test/x11comp: don't hang if Xvfb is not available

If Xvfb is not present, posix_spawn still forks, but the child fails.
In that case, since we left the write fd of the pipe open in the parent,
we just kept waiting on the read() without noticing that the other side
is dead.

Signed-off-by: Ran Benita <ran234@gmail.com>
master
Ran Benita 2014-09-01 17:20:40 +03:00
parent 527bf96f9b
commit fc95057c5f
1 changed files with 6 additions and 2 deletions

View File

@ -78,14 +78,18 @@ main(void)
goto err_ctx;
}
close(pipefds[1]);
display[0] = ':';
ret = read(pipefds[0], display + 1, sizeof(display) - 1);
assert(ret > 0 && 1 + ret < sizeof(display) - 1);
if (ret <= 0 || 1 + ret >= sizeof(display) - 1) {
ret = SKIP_TEST;
goto err_xvfd;
}
if (display[ret] == '\n')
display[ret] = '\0';
display[1 + ret] = '\0';
close(pipefds[0]);
close(pipefds[1]);
conn = xcb_connect(display, NULL);
if (xcb_connection_has_error(conn)) {