From: Jim Meyering Date: Tue, 25 Jan 2011 11:36:22 +0000 (+0100) Subject: tests: avoid FP failure due to suspension X-Git-Tag: v8.10~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56699864f63fe69259d4a5c1f94498762d8df78d;p=thirdparty%2Fcoreutils.git tests: avoid FP failure due to suspension * tests/du/move-dir-while-traversing: Prohibit suspension, to avoid false-positive failure. --- diff --git a/tests/du/move-dir-while-traversing b/tests/du/move-dir-while-traversing index c711e0262c..2a60d6e95c 100755 --- a/tests/du/move-dir-while-traversing +++ b/tests/du/move-dir-while-traversing @@ -70,6 +70,10 @@ long=d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z for i in $(seq 30); do mkdir -p $t/3/a/b/c/$i/$long || framework_failure done + +# Prohibit suspension, which could otherwise cause a timeout-induced FP failure. +trap '' STOP TSTP + timeout 6 ./inotify-watch-for-dir-access.py $t/3/a/b > start-msg & # Wait for the watcher to start...