diff options
author | Nix <nix@esperi.org.uk> | 2011-11-13 18:15:10 +0000 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-11-13 20:02:55 +0100 |
commit | b8b6dd27a61dce58d6537dfbee65c7428f4ae3cd (patch) | |
tree | 8b0835000285ceceb85c0714bb0db4fd12f2b5f3 | |
parent | 47052ddbfa04b16d649ae0ecbaacfd3ce1f03c53 (diff) | |
download | coreutils-b8b6dd27a61dce58d6537dfbee65c7428f4ae3cd.tar.xz |
tests: avoid rare fp failure in du/move-dir-while-traversing
* tests/du/move-dir-while-traversing: Boost the mkdir iteration count
yet again.
-rwxr-xr-x | tests/du/move-dir-while-traversing | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/du/move-dir-while-traversing b/tests/du/move-dir-while-traversing index 322a9a593..d0969fecc 100755 --- a/tests/du/move-dir-while-traversing +++ b/tests/du/move-dir-while-traversing @@ -66,8 +66,8 @@ long=d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z # Five iterations was not enough in 2 of 7 "make -j20 check" runs on a # 6/12-core system. However, using "10", I saw no failure in 20 trials. # Using 10 iterations was not enough, either. -# Using 30, I saw no failure in 200 trials. -for i in $(seq 30); do +# Using 50, I saw no failure in 200 trials. +for i in $(seq 50); do mkdir -p $t/3/a/b/c/$i/$long || framework_failure_ done |