1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00
This commit is contained in:
Jim Meyering
1999-04-11 02:17:48 +00:00
parent cc40ff77a8
commit 12562e897d
3 changed files with 36 additions and 0 deletions

23
tests/dd/misc Executable file
View File

@@ -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