testcases: Attempt to integrate POSIX IPC tests to dfregress(8)
[dragonfly.git] / test / testcases / posixipc / open_extra_flags / open_extra_flags.c
1 #include <common.h>
2
3 int
4 main(void) {
5         int retval = 0;
6
7         retval = sem_open_should_fail(TEST_PATH, O_RDONLY | O_DIRECT, 0777, 1, EINVAL);
8
9         return retval;
10 }