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

Merge pull request #760 from ebfe/disable-stdbuf

tests/stdbuf: disable on non-linux os
This commit is contained in:
Heather 2015-12-22 17:20:24 +04:00
commit 88710fa01d

View file

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