summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp30
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-23 13:43:38 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-24 14:44:31 +0200
commit9f61ad60c038847e919e4fd330b78b532b274c64 (patch)
treec0a9b0719d2b42e2a350d0fb4eae9f4fc46cfbb0 /testsuites/sptests/sp30
parentbsps: Include missing <rtems/bspIo.h> (diff)
downloadrtems-9f61ad60c038847e919e4fd330b78b532b274c64.tar.bz2
testsuites: Increase invalid priority values
Increase the invalid priority values to support test runs with alternative schedulers offering a significant higher maximum priority value, e.g. EDF.
Diffstat (limited to 'testsuites/sptests/sp30')
-rw-r--r--testsuites/sptests/sp30/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/sptests/sp30/init.c b/testsuites/sptests/sp30/init.c
index 21fb3ddc89..616e4cd2a4 100644
--- a/testsuites/sptests/sp30/init.c
+++ b/testsuites/sptests/sp30/init.c
@@ -46,7 +46,7 @@ rtems_task Init(
/* initiate with bad priority */
puts( "timer_initiate_server -- INVALID_PRIORITY" );
status = rtems_timer_initiate_server(
- 1000,
+ UINT32_C(0x80000000),
RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_ATTRIBUTES
);