aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fdso.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fdso.c')
-rw-r--r--tests/fdso.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fdso.c b/tests/fdso.c
index 8a2a0d0..8e320cf 100644
--- a/tests/fdso.c
+++ b/tests/fdso.c
@@ -48,8 +48,8 @@ TESTCASE(invalid_od, ALL,
48TESTCASE(invalid_obj_type, ALL, 48TESTCASE(invalid_obj_type, ALL,
49 "reject invalid object types") 49 "reject invalid object types")
50{ 50{
51 SYSCALL_FAILS( EINVAL, od_open(0, -1, 0) ); 51 SYSCALL_FAILS( EINVAL, od_open(0, (obj_type_t)-1, 0) );
52 SYSCALL_FAILS( EINVAL, od_open(0, 10, 0) ); 52 SYSCALL_FAILS( EINVAL, od_open(0, (obj_type_t)10, 0) );
53} 53}
54 54
55TESTCASE(not_inherit_od, GSN_EDF | PSN_EDF, 55TESTCASE(not_inherit_od, GSN_EDF | PSN_EDF,