summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRyan Zoeller <rtzoeller@rtzoeller.com>2021-10-16 12:23:42 -0500
committerRyan Zoeller <rtzoeller@rtzoeller.com>2021-12-22 12:59:35 -0600
commite5af88425160d24a99c8a5cb40b7e6a4712bab0b (patch)
treeba4bb5c7e1485f55df15fb7fffc4a137f7f8b184 /test
parent3e952d3af7cf6a42c32c5d7415c6320db3545a6d (diff)
downloadnix-e5af88425160d24a99c8a5cb40b7e6a4712bab0b.zip
Recent versions of Android support EPOLLEXCLUSIVE
Enable epoll tests on Android, because they are passing.
Diffstat (limited to 'test')
-rw-r--r--test/sys/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sys/mod.rs b/test/sys/mod.rs
index e73d9b1d..60904bd1 100644
--- a/test/sys/mod.rs
+++ b/test/sys/mod.rs
@@ -30,7 +30,7 @@ mod test_ioctl;
mod test_wait;
mod test_uio;
-#[cfg(target_os = "linux")]
+#[cfg(any(target_os = "android", target_os = "linux"))]
mod test_epoll;
#[cfg(target_os = "linux")]
mod test_inotify;