summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp25
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-04 21:51:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-04 21:51:08 +0000
commite73850bfb2dcc8fbd0d778921ac17787a54e3af7 (patch)
tree6ce0067ee5435d64caf614a139b3c8b562376e0c /testsuites/sptests/sp25
parent2009-05-04 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-e73850bfb2dcc8fbd0d778921ac17787a54e3af7.tar.bz2
2009-05-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp25/init.c, sp25/system.h, sp25/task1.c: Reduce size of array from 64k to 20k. No impact on test behavior.
Diffstat (limited to 'testsuites/sptests/sp25')
-rw-r--r--testsuites/sptests/sp25/init.c2
-rw-r--r--testsuites/sptests/sp25/system.h7
-rw-r--r--testsuites/sptests/sp25/task1.c2
3 files changed, 3 insertions, 8 deletions
diff --git a/testsuites/sptests/sp25/init.c b/testsuites/sptests/sp25/init.c
index 6c81972c9d..dd99054a4a 100644
--- a/testsuites/sptests/sp25/init.c
+++ b/testsuites/sptests/sp25/init.c
@@ -11,7 +11,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
diff --git a/testsuites/sptests/sp25/system.h b/testsuites/sptests/sp25/system.h
index 29f7f93161..0da04e56e0 100644
--- a/testsuites/sptests/sp25/system.h
+++ b/testsuites/sptests/sp25/system.h
@@ -45,12 +45,7 @@ TEST_EXTERN rtems_id Region_id[ 2 ]; /* array of region ids */
TEST_EXTERN rtems_name Region_name[ 2 ]; /* array of region names */
/* test will fail... segment sizes need to be reworked for <=32K buffer */
-#if defined(__m32c__)
-#warning "Address size type of regions"
-TEST_EXTERN uint8_t Area_1[32000] CPU_STRUCTURE_ALIGNMENT;
-#else
-TEST_EXTERN uint8_t Area_1[64000] CPU_STRUCTURE_ALIGNMENT;
-#endif
+TEST_EXTERN uint8_t Area_1[20*1024] CPU_STRUCTURE_ALIGNMENT;
#define BASE_PRIORITY ((RTEMS_MAXIMUM_PRIORITY / 2) + 1)
diff --git a/testsuites/sptests/sp25/task1.c b/testsuites/sptests/sp25/task1.c
index 3113b20543..a1f47ba1e4 100644
--- a/testsuites/sptests/sp25/task1.c
+++ b/testsuites/sptests/sp25/task1.c
@@ -7,7 +7,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be