1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

sum: fix sysv_stdin testcase

This commit is contained in:
Michael Gehring 2015-11-25 09:51:32 +01:00
parent cdbae736f1
commit e7398b3ca7

View file

@ -65,7 +65,7 @@ fn test_sysv_multiple_files() {
fn test_sysv_stdin() { fn test_sysv_stdin() {
let (at, mut ucmd) = testing(UTIL_NAME); let (at, mut ucmd) = testing(UTIL_NAME);
let input = at.read("lorem_ipsum.txt"); let input = at.read("lorem_ipsum.txt");
let result = ucmd.run_piped_stdin(input); let result = ucmd.arg("-s").run_piped_stdin(input);
assert_empty_stderr!(result); assert_empty_stderr!(result);
assert!(result.success); assert!(result.success);