From 1a267d5c4b1a51eb759a84bb5e552c82598c2a51 Mon Sep 17 00:00:00 2001 From: Ryan Zoeller Date: Sat, 16 Oct 2021 12:29:46 -0500 Subject: [PATCH] Enable epoll tests on Android --- test/sys/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sys/mod.rs b/test/sys/mod.rs index e73d9b1dc6..60904bd174 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;