summaryrefslogtreecommitdiff
path: root/tests/dd
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-08-23 07:54:06 +0000
committerJim Meyering <jim@meyering.net>2000-08-23 07:54:06 +0000
commitc5a36496a9d333c5663dce34dff8107a2eb77ffc (patch)
treee9ee39a9b49cfaac104eff43e6fa2598d63b50aa /tests/dd
parent89f0eb153fe21ea2c82125e25bfc828949f1b6ed (diff)
downloadcoreutils-c5a36496a9d333c5663dce34dff8107a2eb77ffc.tar.xz
longer input
Diffstat (limited to 'tests/dd')
-rwxr-xr-xtests/dd/not-rewound4
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