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

tests/stdbuf: disable on non-linux os

This commit is contained in:
Michael Gehring 2015-12-22 12:55:51 +01:00
parent c380195f94
commit 1fc698a17f

View file

@ -7,6 +7,7 @@ static UTIL_NAME: &'static str = "stdbuf";
#[test]
fn test_stdbuf_unbuffered_stdout() {
if cfg!(target_os="linux") {
let (_, mut ucmd) = testing(UTIL_NAME);
// This is a basic smoke test
let result = ucmd.args(&["-o0", "head"])
@ -14,3 +15,4 @@ fn test_stdbuf_unbuffered_stdout() {
assert_eq!(result.stdout,
"The quick brown fox jumps over the lazy dog.");
}
}