1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

du: ignore test under Android & FreeBSD

This commit is contained in:
Daniel Hofstetter 2023-11-05 14:19:43 +01:00
parent 44d105d015
commit bbdde2890a

View file

@ -336,7 +336,7 @@ fn _du_dereference(s: &str) {
} }
} }
#[cfg(not(windows))] #[cfg(not(any(target_os = "windows", target_os = "android", target_os = "freebsd")))]
#[test] #[test]
fn test_du_no_dereference() { fn test_du_no_dereference() {
let ts = TestScenario::new(util_name!()); let ts = TestScenario::new(util_name!());