.
authorJim Meyering <jim@meyering.net>
Sun, 11 Apr 1999 02:17:48 +0000 (02:17 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 11 Apr 1999 02:17:48 +0000 (02:17 +0000)
tests/dd/.cvsignore [new file with mode: 0644]
tests/dd/Makefile.am [new file with mode: 0644]
tests/dd/misc [new file with mode: 0755]

diff --git a/tests/dd/.cvsignore b/tests/dd/.cvsignore
new file mode 100644 (file)
index 0000000..f3c7a7c
--- /dev/null
@@ -0,0 +1 @@
+Makefile
diff --git a/tests/dd/Makefile.am b/tests/dd/Makefile.am
new file mode 100644 (file)
index 0000000..f0ef92a
--- /dev/null
@@ -0,0 +1,12 @@
+## Process this file with automake to produce Makefile.in -*-Makefile-*-.
+
+EXTRA_DIST = $(TESTS)
+
+TESTS_ENVIRONMENT = \
+  top_srcdir=$(top_srcdir) \
+  srcdir=$(srcdir) \
+  PERL="@PERL@" \
+  PATH=../../src:$$PATH \
+  PROG=ls
+
+TESTS = misc
diff --git a/tests/dd/misc b/tests/dd/misc
new file mode 100755 (executable)
index 0000000..1100f11
--- /dev/null
@@ -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