1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-09 02:04:06 +02:00
This commit is contained in:
Jim Meyering
1999-04-12 03:47:40 +00:00
parent 924b7e2291
commit a36f86a13e
2 changed files with 41 additions and 0 deletions
+12
View File
@@ -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
+29
View File
@@ -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