summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx05
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/psxtests/psx05
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/psxtests/psx05')
-rw-r--r--testsuites/psxtests/psx05/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psx05/init.c b/testsuites/psxtests/psx05/init.c
index 5f39b2f16a..cde8733bb0 100644
--- a/testsuites/psxtests/psx05/init.c
+++ b/testsuites/psxtests/psx05/init.c
@@ -726,7 +726,7 @@ void *POSIX_Init(
rtems_test_assert( status == EINVAL );
puts( "Init: pthread_mutex_setprioceiling - EINVAL (illegal priority)" );
- status = pthread_mutex_setprioceiling( &Mutex2_id, 512, &old_ceiling );
+ status = pthread_mutex_setprioceiling( &Mutex2_id, INT_MAX, &old_ceiling );
rtems_test_assert( status == EINVAL );
puts( "Init: pthread_mutex_setprioceiling - EINVAL (NULL ceiling)" );