diff options
author | Jim Meyering <jim@meyering.net> | 1999-04-11 02:17:48 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-04-11 02:17:48 +0000 |
commit | 12562e897d922edb017e5a7985151b5d3884ed71 (patch) | |
tree | bf5a4b80e906787d110636c5906a57b012170a14 /tests/dd/misc | |
parent | cc40ff77a86ce93f1d45a75e2786929cdf134943 (diff) | |
download | coreutils-12562e897d922edb017e5a7985151b5d3884ed71.tar.xz |
.
Diffstat (limited to 'tests/dd/misc')
-rwxr-xr-x | tests/dd/misc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/dd/misc b/tests/dd/misc new file mode 100755 index 000000000..1100f110a --- /dev/null +++ b/tests/dd/misc @@ -0,0 +1,23 @@ +#!/bin/sh + +tmp_in=dd-in.$$ +tmp_out=dd-out.$$ + +if test "$VERBOSE" = yes; then + set -x + dd --version +fi + +test_failure=0 +echo data > $tmp_in || test_failure=1 +if test $test_failure = 1; then + echo 'failure in testing framework' + exit 1 +fi + +dd if=$tmp_in of=$tmp_out > /dev/null 2>&1 || fail=1 +cmp $tmp_in $tmp_out || fail=1 + +rm -f $tmp_in $tmp_out + +exit $fail |