From 0ec711b5c4c5094fa206115a666e5878f463a07f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 31 Mar 2011 18:56:47 +0200 Subject: 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. --- tests/tail-2/inotify-rotate | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/tail-2/inotify-rotate b/tests/tail-2/inotify-rotate index 3d028553a..f9aa80f03 100755 --- a/tests/tail-2/inotify-rotate +++ b/tests/tail-2/inotify-rotate @@ -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 -- cgit v1.2.3-54-g00ecf