summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tail-2/inotify-rotate4
1 files changed, 2 insertions, 2 deletions
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