1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-18 21:32:12 +02:00

tests: avoid FP failure in new du test

* tests/du/move-dir-while-traversing: Create a larger tree to
avoid a false-positive failure due to du terminating before
the rename is triggered.
This commit is contained in:
Jim Meyering
2011-01-18 22:32:33 +01:00
parent 5c75d1da85
commit 7e72d4fe9d

View File

@@ -58,9 +58,16 @@ notifier.loop()
EOF
chmod a+x inotify-watch-for-dir-access.py
long=d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z
t=T/U
mkdir -p $t/3/a/b/c/$long d2 || framework_failure
mkdir d2 || framework_failure
long=d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z
# One iteration of this loop creates a tree with which
# du sometimes completes its traversal before the above rename.
# Even 5 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.
for i in $(seq 10); do
mkdir -p $t/3/a/b/c/$i/$long || framework_failure
done
timeout 6 ./inotify-watch-for-dir-access.py $t/3/a/b > start-msg &
# Wait for the watcher to start...