]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
.
authorJim Meyering <jim@meyering.net>
Mon, 12 Apr 1999 03:47:40 +0000 (03:47 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 12 Apr 1999 03:47:40 +0000 (03:47 +0000)
tests/tail-2/Makefile.am [new file with mode: 0644]
tests/tail-2/infloop-1 [new file with mode: 0755]

diff --git a/tests/tail-2/Makefile.am b/tests/tail-2/Makefile.am
new file mode 100644 (file)
index 0000000..aeb3756
--- /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=tail
+
+TESTS = infloop-1
diff --git a/tests/tail-2/infloop-1 b/tests/tail-2/infloop-1
new file mode 100755 (executable)
index 0000000..b7db992
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/sh
+# This test would fail with tail from pre-1.22i textutils.
+
+tmp=t1-tail.$$
+
+if test "$VERBOSE" = yes; then
+  set -x
+  tail --version
+fi
+
+test_failure=0
+mkdir $tmp || test_failure=1
+cd $tmp || test_failure=1
+
+if test $test_failure = 1; then
+  echo 'failure in testing framework'
+  exit 1
+fi
+
+yes > t &
+yes_pid=$!
+while :; do
+  test -s t && break
+done
+tail -1 t &
+tail_pid=$!
+kill $yes_pid
+sleep 1
+kill $tail_pid