From: Jim Meyering Date: Sat, 23 Apr 2011 21:54:11 +0000 (+0200) Subject: tests: tail-2/pipe-f2: avoid false-positive failure X-Git-Tag: v8.12~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e6c96e68cc38954c6d77e2c9361708a383b2cea;p=thirdparty%2Fcoreutils.git 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. --- diff --git a/tests/tail-2/pipe-f2 b/tests/tail-2/pipe-f2 index c258fee16a..3422c23cf0 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