mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
13 lines
371 B
Rust
13 lines
371 B
Rust
use crate::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.");
|
|
}
|
|
}
|