summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-21 14:43:47 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-24 08:16:32 -0500
commit6849e5379afceb89436942073064fbc0cbfa54e9 (patch)
treee25150b3c399d42b3e8fe6190e40327d2ef16b02
parentsptests/sp13/system.h: Fine tune message buffer configuration to avoid intege... (diff)
downloadrtems-6849e5379afceb89436942073064fbc0cbfa54e9.tar.bz2
sptests/sp20: Reduce memory requirements
This was checked on sparc/sis. If this fails on other targets, then the task stack sizes needs to be reevaluated.
-rw-r--r--testsuites/sptests/sp20/init.c2
-rw-r--r--testsuites/sptests/sp20/system.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/testsuites/sptests/sp20/init.c b/testsuites/sptests/sp20/init.c
index 746639b938..e88c6c2bbb 100644
--- a/testsuites/sptests/sp20/init.c
+++ b/testsuites/sptests/sp20/init.c
@@ -48,7 +48,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ index ],
Priorities[ index ],
- RTEMS_MINIMUM_STACK_SIZE * 4,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ index ]
diff --git a/testsuites/sptests/sp20/system.h b/testsuites/sptests/sp20/system.h
index 906331d784..33d07f79b4 100644
--- a/testsuites/sptests/sp20/system.h
+++ b/testsuites/sptests/sp20/system.h
@@ -47,8 +47,6 @@ void Get_all_counters( void );
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-#define CONFIGURE_EXTRA_TASK_STACKS (6 * 4 * RTEMS_MINIMUM_STACK_SIZE)
-
#include <rtems/confdefs.h>
/* global variables */