2015-11-16 05:25:01 +00:00
|
|
|
use common::util::*;
|
|
|
|
|
|
|
|
static UTIL_NAME: &'static str = "stdbuf";
|
2016-07-29 21:26:32 +00:00
|
|
|
fn new_ucmd() -> UCommand {
|
|
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[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
|
2016-08-13 21:59:21 +00:00
|
|
|
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
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|