1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

Merge pull request #4144 from niyaznigmatullin/disable_test_cp_parents_2_dirs_for_android

test_cp: temporarily disable non-working test on Android
This commit is contained in:
Sylvestre Ledru 2022-11-15 10:37:49 +01:00 committed by GitHub
commit 8e1742f45a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2019,7 +2019,8 @@ fn test_copy_same_symlink_no_dereference_dangling() {
ucmd.args(&["-d", "a", "b"]).succeeds(); ucmd.args(&["-d", "a", "b"]).succeeds();
} }
#[cfg(not(windows))] // TODO: enable for Android, when #3477 solved
#[cfg(not(any(windows, target_os = "android")))]
#[test] #[test]
fn test_cp_parents_2_dirs() { fn test_cp_parents_2_dirs() {
let (at, mut ucmd) = at_and_ucmd!(); let (at, mut ucmd) = at_and_ucmd!();