mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 02:08:09 +00:00
12 lines
337 B
Rust
12 lines
337 B
Rust
use common::util::*;
|
|
|
|
|
|
#[test]
|
|
fn test_stdbuf_unbuffered_stdout() {
|
|
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.");
|
|
}
|
|
}
|