From: Filipe Manana Date: Tue, 17 Nov 2015 03:44:45 +0000 (+1100) Subject: generic/269: Fix failure due to race killing fsstress job X-Git-Tag: v2022.05.01~2744 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=e597459397acad3fcb19fa00e8a4abb8a59f8af2;p=users%2Fhch%2Fxfstests-dev.git generic/269: Fix failure due to race killing fsstress job When running the test generic/269 against a fast scratch device (loopback device backed by a file on tmpfs) I often got a test failure due to the fact that the fsstress job had already completed before the test attempted to kill it, producing the following failure output: generic/269 91s ... - output mismatch (see .../generic/269.out.bad) --- tests/generic/269.out 2014-11-17 20:59:50.974203000 +0000 +++ /home/fdmanana/git/hub/xfstests/results//generic/269.out.bad 2015-11-13 15:41:59.669893035 +0000 @@ -3,3 +3,4 @@ Run fsstress Run dd writers in parallel +./tests/generic/269: line 59: kill: (13417) - No such process ... (Run 'diff -u tests/generic/269.out .../generic/269.out.bad' to see the entire diff) So fix this false failure by redirecting the standard output and error from the kill into the seq file. Signed-off-by: Filipe Manana Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- diff --git a/tests/generic/269 b/tests/generic/269 index fe648b59b..09582220e 100755 --- a/tests/generic/269 +++ b/tests/generic/269 @@ -56,7 +56,8 @@ _workout() >> $seqres.full 2>&1 sleep $enospc_time done - kill $pid + echo "Killing fsstress process..." >> $seqres.full + kill $pid >> $seqres.full 2>&1 wait $pid }