1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: skip TTY select test if /dev/tty can't be opened

PR-URL: https://github.com/libuv/libuv/pull/123
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Saúl Ibarra Corretgé 2015-01-07 12:55:42 +01:00
parent 295fc41d29
commit 72e4b5ab66

View File

@ -54,8 +54,10 @@ TEST_IMPL(osx_select) {
uv_tty_t tty;
fd = open("/dev/tty", O_RDONLY);
ASSERT(fd >= 0);
if (fd < 0) {
LOGF("Cannot open /dev/tty as read-only: %s\n", strerror(errno));
return TEST_SKIP;
}
r = uv_tty_init(uv_default_loop(), &tty, fd, 1);
ASSERT(r == 0);
@ -104,7 +106,10 @@ TEST_IMPL(osx_select_many_fds) {
}
fd = open("/dev/tty", O_RDONLY);
ASSERT(fd >= 0);
if (fd < 0) {
LOGF("Cannot open /dev/tty as read-only: %s\n", strerror(errno));
return TEST_SKIP;
}
r = uv_tty_init(uv_default_loop(), &tty, fd, 1);
ASSERT(r == 0);