diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-23 07:54:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-23 07:54:06 +0000 |
commit | c5a36496a9d333c5663dce34dff8107a2eb77ffc (patch) | |
tree | e9ee39a9b49cfaac104eff43e6fa2598d63b50aa /tests | |
parent | 89f0eb153fe21ea2c82125e25bfc828949f1b6ed (diff) | |
download | coreutils-c5a36496a9d333c5663dce34dff8107a2eb77ffc.tar.xz |
longer input
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/dd/not-rewound | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dd/not-rewound b/tests/dd/not-rewound index 3c03ddb9f..59704c783 100755 --- a/tests/dd/not-rewound +++ b/tests/dd/not-rewound @@ -22,10 +22,10 @@ fi fail=0 -echo abc > in +echo abcde > in (dd skip=1 count=1 bs=1; dd skip=1 bs=1) < in > out 2> /dev/null || fail=1 case `cat out` in - b) ;; + bde) ;; *) fail=1 ;; esac |