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

od: fix and add tests for simple format args

This commit is contained in:
Wim Hueskes 2016-08-10 00:57:04 +02:00
parent c2d61a294e
commit d15604b2e4
4 changed files with 153 additions and 42 deletions

View file

@ -158,7 +158,7 @@ fn test_dec() {
0000000 0 1 2 3 32767 -32768 -32767
0000016
");
let result = new_ucmd!().arg("--endian=little").arg("-i").run_piped_stdin(&input[..]);
let result = new_ucmd!().arg("--endian=little").arg("-s").run_piped_stdin(&input[..]);
assert_empty_stderr!(result);
assert!(result.success);