summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp09/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-10-14 13:03:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-10-14 13:03:38 +0000
commit29ff6c9ccbe8c93d032ba3bc015998a82888de67 (patch)
treed4a10f8205dddacafb6a20c3627e7cfda855bb7d /testsuites/sptests/sp09/system.h
parent2008-10-13 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-29ff6c9ccbe8c93d032ba3bc015998a82888de67.tar.bz2
2008-10-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp09/screen07.c: Use INT_MAX as number of messages so always properly sized and no overflow on constant. * sp09/screen10.c: Delay so on targets with simulator idle clock tick driver this will work. * sp09/screen11.c, sp09/system.h: Move badly aligned objects to odd byte boundaries rather than two byte boundaries. * sp09/screen03.c, sp09/screen14.c: Skip tests which try to allocate more memory than size_t holds on m32c.
Diffstat (limited to '')
-rw-r--r--testsuites/sptests/sp09/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp09/system.h b/testsuites/sptests/sp09/system.h
index 2b043d0535..dd8c73c473 100644
--- a/testsuites/sptests/sp09/system.h
+++ b/testsuites/sptests/sp09/system.h
@@ -131,10 +131,10 @@ TEST_EXTERN rtems_id Junk_id; /* id used to return errors */
#define External_port_area (void *) 0x00002000
TEST_EXTERN uint8_t Partition_good_area[256] CPU_STRUCTURE_ALIGNMENT;
-#define Partition_bad_area (void *) 0x00000006
+#define Partition_bad_area (void *) 0x00000005
TEST_EXTERN uint32_t Region_good_area[4096] CPU_STRUCTURE_ALIGNMENT;
-#define Region_bad_area (void *) 0x00000006
+#define Region_bad_area (void *) 0x00000005
#define REGION_START_OFFSET 1024
#define REGION_LENGTH 512