diff options
author | Petr Salinger <Petr.Salinger@seznam.cz> | 2009-09-04 17:58:34 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2009-09-04 18:14:55 +0100 |
commit | a23afe7b726cabd70f1afa7c4164fc8d36fe1c17 (patch) | |
tree | c4cee3cda5bf92f0919772841e8021eed765dfdf /tests/tail-2 | |
parent | 82f09f47624361f3788ebe630c004fe854cccdab (diff) | |
download | coreutils-a23afe7b726cabd70f1afa7c4164fc8d36fe1c17.tar.xz |
tests: fix a tail-2/pid failure on GNU/kFreeBSD
* tests/tail-2/wait: Increase the file name recheck frequency to
fix a failure on systems without inotify and a file timestamp precision
of 1 second (like GNU/kFreeBSD).
Diffstat (limited to 'tests/tail-2')
-rwxr-xr-x | tests/tail-2/wait | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tail-2/wait b/tests/tail-2/wait index abe22d735..a5f189fe0 100755 --- a/tests/tail-2/wait +++ b/tests/tail-2/wait @@ -56,7 +56,7 @@ test $? = 124 || fail=1 test -s tail.err && fail=1 -tail -s.1 -F k > tail.out & +tail -s.1 --max-unchanged-stats=2 -F k > tail.out & pid=$! sleep .5 mv k l |