1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +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:
Sylvestre Ledru 2021-07-09 09:11:52 +02:00 committed by GitHub
commit 2177b8dc37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -573,7 +573,8 @@ fn test_du_bytes() {
#[cfg(all(
not(target_vendor = "apple"),
not(target_os = "windows"),
not(target_os = "freebsd")
not(target_os = "freebsd"),
not(target_os = "linux")
))]
result.stdout_contains("21529\t./subdir\n");
}