1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-07 09:11:11 +02:00

tests: inotify-rotate: avoid race condition with overloaded disk

* tests/tail-2/inotify-rotate: Wait 50% longer for grep to succeed.
Without this change, this test would fail consistently when using
"make -j25 check" with F15 in a virtio- and spinning-rust-backed
virtual machine.
This commit is contained in:
Jim Meyering
2011-03-31 18:56:47 +02:00
parent f69876e558
commit 0ec711b5c4
+2 -2
View File
@@ -24,12 +24,12 @@ fi
. "${srcdir=.}/init.sh"; path_prepend_ ../src
expensive_
# Wait up to 10 seconds for grep REGEXP FILE to succeed.
# Wait several seconds for grep REGEXP FILE to succeed.
# Usage: grep_timeout REGEXP FILE
grep_timeout()
{
local j
for j in $(seq 100); do
for j in $(seq 150); do
grep $1 $2 > /dev/null && return 0
sleep 0.1
done