coreutils/tests/test_stdbuf.rs

17 lines
449 B
Rust
Raw Normal View History

use common::util::*;
static UTIL_NAME: &'static str = "stdbuf";
fn new_ucmd() -> UCommand {
TestScenario::new(UTIL_NAME).ucmd()
}
#[test]
fn test_stdbuf_unbuffered_stdout() {
2015-12-22 11:55:51 +00:00
if cfg!(target_os="linux") {
// This is a basic smoke test
new_ucmd().args(&["-o0", "head"])
.pipe_in("The quick brown fox jumps over the lazy dog.").run()
.stdout_is("The quick brown fox jumps over the lazy dog.");
2015-12-22 11:55:51 +00:00
}
}