test: fix android build error.

Do not compile 'tty_pty' test for android.

PR-URL: https://github.com/libuv/libuv/pull/975
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
This commit is contained in:
sunjin.lee 2016-08-05 09:52:07 +09:00 committed by cjihrig
parent 63ab64144e
commit 791c817891

View File

@ -28,7 +28,7 @@
#else /* Unix */ #else /* Unix */
# include <fcntl.h> # include <fcntl.h>
# include <unistd.h> # include <unistd.h>
# if defined(__linux__) # if defined(__linux__) && !defined(__ANDROID__)
# include <pty.h> # include <pty.h>
# elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) # elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
# include <util.h> # include <util.h>
@ -260,7 +260,7 @@ TEST_IMPL(tty_file) {
} }
TEST_IMPL(tty_pty) { TEST_IMPL(tty_pty) {
# if defined(__linux__) || defined(__OpenBSD__) || defined(__NetBSD__) || \ # if defined(__linux__) && !defined(__ANDROID__) || defined(__OpenBSD__) || defined(__NetBSD__) || \
defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__) defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__)
int master_fd, slave_fd, r; int master_fd, slave_fd, r;
struct winsize w; struct winsize w;