From 441d42d2628b42d818dd97a13e462a6e3adb0a48 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 23 Aug 2000 07:45:59 +0000 Subject: [PATCH] *** empty log message *** --- tests/dd/not-rewound | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 tests/dd/not-rewound diff --git a/tests/dd/not-rewound b/tests/dd/not-rewound new file mode 100755 index 0000000..0a50042 --- /dev/null +++ b/tests/dd/not-rewound @@ -0,0 +1,32 @@ +#!/bin/sh +# Make sure dd does the right thing when the file descriptor is not rewound. + +if test "$VERBOSE" = yes; then + set -x + dd --version +fi + +pwd=`pwd` +tmp=dd-rw.$$ +trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0 +trap '(exit $?); exit' 1 2 13 15 + +framework_failure=0 +mkdir $tmp || framework_failure=1 +cd $tmp || framework_failure=1 + +if test $framework_failure = 1; then + echo 'failure in testing framework' + exit 1 +fi + +fail=0 + +echo abc > in +(dd skip=1 count=1 bs=1; dd skip=1 bs=1) < in > out || fail=1 +case `cat out` in + b) ;; + *) fail=1 ;; +esac + +(exit $fail); exit -- 2.7.4