summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-04-23 23:54:11 +0200
committerJim Meyering <meyering@redhat.com>2011-04-25 10:58:09 +0200
commit0e6c96e68cc38954c6d77e2c9361708a383b2cea (patch)
tree94dcbf9ed76b2963b218ca64c16c5e8590e1dd34 /tests
parent768b8a0662d7aff03335949fafaefbf0c792f747 (diff)
downloadcoreutils-0e6c96e68cc38954c6d77e2c9361708a383b2cea.tar.xz
tests: tail-2/pipe-f2: avoid false-positive failure
Otherwise, this would fail (albeit rarely) on a "make -j24 check" run. * tests/tail-2/pipe-f2: Increase timeout from 1 second to 10, to avoid false positive failure.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tail-2/pipe-f22
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tail-2/pipe-f2 b/tests/tail-2/pipe-f2
index c258fee16..3422c23cf 100755
--- a/tests/tail-2/pipe-f2
+++ b/tests/tail-2/pipe-f2
@@ -24,7 +24,7 @@ mkfifo_or_skip_ fifo
echo 1 > fifo &
echo 1 > exp || framework_failure
-timeout 1 tail -f fifo > out
+timeout 10 tail -f fifo > out
test $? = 124 || fail=1
compare out exp || fail=1