diff options
author | Jim Meyering <meyering@redhat.com> | 2011-04-23 23:54:11 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-04-25 10:58:09 +0200 |
commit | 0e6c96e68cc38954c6d77e2c9361708a383b2cea (patch) | |
tree | 94dcbf9ed76b2963b218ca64c16c5e8590e1dd34 /tests | |
parent | 768b8a0662d7aff03335949fafaefbf0c792f747 (diff) | |
download | coreutils-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-x | tests/tail-2/pipe-f2 | 2 |
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 |