aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-09-07 23:22:38 -0400
committerGlenn Elliott <gelliott@cs.unc.edu>2012-09-07 23:24:15 -0400
commit4829f4175482e0a4ad8f282dd0441904c33e2f97 (patch)
tree1ea66f39beaa1f1fcad08763eebc90537a403b5f /tests
parent12587122ff78adffa2e8bcb571962d8f19365fb9 (diff)
Added signal-related comments. Made g++ friendly.prop/litmus-signals
Diffstat (limited to 'tests')
-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,