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:
parent
c380195f94
commit
1fc698a17f
1 changed files with 8 additions and 6 deletions
|
@ -7,10 +7,12 @@ static UTIL_NAME: &'static str = "stdbuf";
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_stdbuf_unbuffered_stdout() {
|
fn test_stdbuf_unbuffered_stdout() {
|
||||||
let (_, mut ucmd) = testing(UTIL_NAME);
|
if cfg!(target_os="linux") {
|
||||||
// This is a basic smoke test
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
||||||
let result = ucmd.args(&["-o0", "head"])
|
// This is a basic smoke test
|
||||||
.run_piped_stdin("The quick brown fox jumps over the lazy dog.");
|
let result = ucmd.args(&["-o0", "head"])
|
||||||
assert_eq!(result.stdout,
|
.run_piped_stdin("The quick brown fox jumps over the lazy dog.");
|
||||||
"The quick brown fox jumps over the lazy dog.");
|
assert_eq!(result.stdout,
|
||||||
|
"The quick brown fox jumps over the lazy dog.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue