summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-20 10:49:06 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-24 08:16:35 -0500
commit2fe0f16d1341c0c0878cdf416e964cd2dca269d0 (patch)
treef065500250d58f9f83efbfb7796c5238f3b46175
parentsptests/spatomic01/init.c: Avoid integer overflow (diff)
downloadrtems-2fe0f16d1341c0c0878cdf416e964cd2dca269d0.tar.bz2
sptests/spedfsched02: Reduce stack space usage to fix on smaller targets
-rw-r--r--testsuites/sptests/spedfsched02/init.c2
-rw-r--r--testsuites/sptests/spedfsched02/system.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/testsuites/sptests/spedfsched02/init.c b/testsuites/sptests/spedfsched02/init.c
index d11241064f..aa2798c251 100644
--- a/testsuites/sptests/spedfsched02/init.c
+++ b/testsuites/sptests/spedfsched02/init.c
@@ -52,7 +52,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/spedfsched02/system.h b/testsuites/sptests/spedfsched02/system.h
index 3ffcf82fd7..c92a3980a3 100644
--- a/testsuites/sptests/spedfsched02/system.h
+++ b/testsuites/sptests/spedfsched02/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)
-
#define CONFIGURE_SCHEDULER_EDF
#include <rtems/confdefs.h>