From e29afdc0df89ec35a655d1ebdcaf71eaf5375880 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Mon, 8 Jan 2024 17:29:34 +0100 Subject: [PATCH] head: disable some tests on Android --- tests/by-util/test_head.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/by-util/test_head.rs b/tests/by-util/test_head.rs index 9cc4c1770..cc17cdf95 100644 --- a/tests/by-util/test_head.rs +++ b/tests/by-util/test_head.rs @@ -382,6 +382,7 @@ fn test_presume_input_pipe_5_chars() { #[cfg(all( not(target_os = "windows"), not(target_os = "macos"), + not(target_os = "android"), not(target_os = "freebsd") ))] #[test] @@ -396,6 +397,7 @@ fn test_read_backwards_bytes_proc_fs_version() { #[cfg(all( not(target_os = "windows"), not(target_os = "macos"), + not(target_os = "android"), not(target_os = "freebsd") ))] #[test] @@ -410,6 +412,7 @@ fn test_read_backwards_bytes_proc_fs_modules() { #[cfg(all( not(target_os = "windows"), not(target_os = "macos"), + not(target_os = "android"), not(target_os = "freebsd") ))] #[test] @@ -424,6 +427,7 @@ fn test_read_backwards_lines_proc_fs_modules() { #[cfg(all( not(target_os = "windows"), not(target_os = "macos"), + not(target_os = "android"), not(target_os = "freebsd") ))] #[test]