diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog index 53ef41d931..5e17e3cf5b 100644 --- a/testsuites/sptests/ChangeLog +++ b/testsuites/sptests/ChangeLog @@ -1,3 +1,8 @@ +2009-05-04 Joel Sherrill + + * sp25/init.c, sp25/system.h, sp25/task1.c: Reduce size of array from + 64k to 20k. No impact on test behavior. + 2009-05-04 Joel Sherrill * sp09/screen12.c, sp25/task1.c: Remove warnigns for wrong types. 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