From f73f686ca32176393f0854e28f039f782a8ecfc1 Mon Sep 17 00:00:00 2001 From: Niyaz Nigmatullin Date: Tue, 15 Nov 2022 10:00:59 +0200 Subject: [PATCH] test_cp: temporarily disable non-working test on Android --- tests/by-util/test_cp.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/by-util/test_cp.rs b/tests/by-util/test_cp.rs index 39af0c29527..ade4d820f2e 100644 --- a/tests/by-util/test_cp.rs +++ b/tests/by-util/test_cp.rs @@ -2019,7 +2019,8 @@ fn test_copy_same_symlink_no_dereference_dangling() { ucmd.args(&["-d", "a", "b"]).succeeds(); } -#[cfg(not(windows))] +// TODO: enable for Android, when #3477 solved +#[cfg(not(any(windows, target_os = "android")))] #[test] fn test_cp_parents_2_dirs() { let (at, mut ucmd) = at_and_ucmd!();