mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-04 09:20:29 +01:00
test: one O_NONBLOCK is enough
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
d1af333546
commit
345846729c
1 changed files with 1 additions and 1 deletions
|
|
@ -949,7 +949,7 @@ litest_fork_subtests(struct list *tests, int max_forks)
|
|||
int rc;
|
||||
int pipefd[2];
|
||||
|
||||
rc = pipe2(pipefd, O_NONBLOCK|O_NONBLOCK);
|
||||
rc = pipe2(pipefd, O_NONBLOCK);
|
||||
assert(rc != -1);
|
||||
|
||||
pid = fork();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue