aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@mpi-sws.org>2015-12-16 05:35:23 -0500
committerBjoern Brandenburg <bbb@mpi-sws.org>2015-12-16 05:35:23 -0500
commit54dfe4289fd1b9b41f05fca6371c320e6cea35b8 (patch)
treeaff4e024eac5279678cf7836a776a2bb7a0c9ba6 /tests
parent68849a8cd97718109dce1e548b099239376f3f2e (diff)
Implement get_job_no() via control page
Diffstat (limited to 'tests')
-rw-r--r--tests/core_api.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/core_api.c b/tests/core_api.c
index 8cb5588..95ca69b 100644
--- a/tests/core_api.c
+++ b/tests/core_api.c
@@ -105,13 +105,9 @@ TESTCASE(accept_valid_priorities, P_FP,
105TESTCASE(job_control_non_rt, ALL, 105TESTCASE(job_control_non_rt, ALL,
106 "reject job control for non-rt tasks") 106 "reject job control for non-rt tasks")
107{ 107{
108 unsigned int job_no;
109
110 SYSCALL_FAILS( EINVAL, sleep_next_period() ); 108 SYSCALL_FAILS( EINVAL, sleep_next_period() );
111 109
112 SYSCALL_FAILS( EINVAL, wait_for_job_release(0) ); 110 SYSCALL_FAILS( EINVAL, wait_for_job_release(0) );
113
114 SYSCALL_FAILS( EPERM, get_job_no(&job_no) );
115} 111}
116 112
117 113