summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp28
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-06-05 14:23:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-06-05 14:23:57 +0000
commit86db88d2700722d9235ccf88d14f893ae37a7ac4 (patch)
tree280e4b1613f97845e88be9d75fa658dec6c68fc0 /testsuites/sptests/sp28
parent2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-86db88d2700722d9235ccf88d14f893ae37a7ac4.tar.bz2
2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp28/init.c: Corrections to configuration. * sp37/init.c: Correctly invoke rtems_interrupt_disable() body. * spsize/size.c: _ISR_Vector_table only exists on architectures which use the Simple Vectored Interrupt Model.
Diffstat (limited to 'testsuites/sptests/sp28')
-rw-r--r--testsuites/sptests/sp28/init.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuites/sptests/sp28/init.c b/testsuites/sptests/sp28/init.c
index 6feb34d1ec..97cd13528f 100644
--- a/testsuites/sptests/sp28/init.c
+++ b/testsuites/sptests/sp28/init.c
@@ -16,9 +16,9 @@ rtems_task Init(rtems_task_argument argument);
#define CONFIGURE_MAXIMUM_USER_EXTENSIONS 2
#define CONFIGURE_MAXIMUM_TASKS 4
+#define CONFIGURE_MAXIMUM_TASK_VARIABLES (4)
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-#define CONFIGURE_MICROSECONDS_PER_TICK 52429
-#define CONFIGURE_INIT_TASK_STACK_SIZE (4*RTEMS_MINIMUM_STACK_SIZE)
+#define CONFIGURE_MICROSECONDS_PER_TICK 10000
#define CONFIGURE_MICROSECONDS_INIT
@@ -215,6 +215,7 @@ void test_multiple_taskvars(void)
}
#define MAX_VARS 4096
+
void *Pointers[MAX_VARS];
void test_out_of_memory(void)