aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 0a87838..8cb5588 100644
--- a/tests/core_api.c
+++ b/tests/core_api.c
@@ -32,11 +32,7 @@ TESTCASE(set_rt_task_param_invalid_params, ALL,
32 /* over utilize */ 32 /* over utilize */
33 params.exec_cost = 110; 33 params.exec_cost = 110;
34 SYSCALL_FAILS( EINVAL, set_rt_task_param(gettid(), &params) ); 34 SYSCALL_FAILS( EINVAL, set_rt_task_param(gettid(), &params) );
35
36 /* bad CPU */
37 params.exec_cost = 90; 35 params.exec_cost = 90;
38 params.cpu = -1;
39 SYSCALL_FAILS( EINVAL, set_rt_task_param(gettid(), &params) );
40 36
41 /* infeasible density */ 37 /* infeasible density */
42 params.cpu = 0; 38 params.cpu = 0;