*** empty log message ***
authorJim Meyering <jim@meyering.net>
Wed, 23 Aug 2000 07:45:59 +0000 (07:45 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 23 Aug 2000 07:45:59 +0000 (07:45 +0000)
tests/dd/not-rewound [new file with mode: 0755]

diff --git a/tests/dd/not-rewound b/tests/dd/not-rewound
new file mode 100755 (executable)
index 0000000..0a50042
--- /dev/null
@@ -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