diff options
Diffstat (limited to 'tests/dd/not-rewound')
-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 |