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
+2 -1
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");
}