mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
Merge pull request #2481 from Funky185540/fix/test_du_bytes_nondynamic_on_linux
test: du: Skip nondynamic comparison on linux for test_du_bytes
This commit is contained in:
commit
2177b8dc37
1 changed files with 2 additions and 1 deletions
|
@ -573,7 +573,8 @@ fn test_du_bytes() {
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
not(target_vendor = "apple"),
|
not(target_vendor = "apple"),
|
||||||
not(target_os = "windows"),
|
not(target_os = "windows"),
|
||||||
not(target_os = "freebsd")
|
not(target_os = "freebsd"),
|
||||||
|
not(target_os = "linux")
|
||||||
))]
|
))]
|
||||||
result.stdout_contains("21529\t./subdir\n");
|
result.stdout_contains("21529\t./subdir\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue