diff options
author | Jim Meyering <meyering@redhat.com> | 2011-03-31 18:56:47 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-03-31 18:58:38 +0200 |
commit | 0ec711b5c4c5094fa206115a666e5878f463a07f (patch) | |
tree | c0e4b01fcbc72332293c2beb0ad9d2ede05b8fd8 /tests/tail-2/inotify-rotate | |
parent | f69876e558782eb770955aa0b1344a5a8262548b (diff) | |
download | coreutils-0ec711b5c4c5094fa206115a666e5878f463a07f.tar.xz |
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.
Diffstat (limited to 'tests/tail-2/inotify-rotate')
-rwxr-xr-x | tests/tail-2/inotify-rotate | 4 |
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 |