git » libfiu » master » tree

[master] / tests / generated / tests / open.conf

1
2
3
4
5
6
7
8
[open]
fp: posix/io/oc/open
include: sys/types.h sys/stat.h fcntl.h
prep: int fd = -1;
call: fd = open("/dev/null", O_RDONLY);
success_cond: fd != -1
failure_cond: fd == -1
errno_on_fail: ELOOP