From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> generic/561 can take a very long time to run on XFS (45+ minutes) because it kicks off fsstress and a lot of duperemove processes, waits 50 seconds, and then waits for the duperemove processes to finish. duperemove, however, fights with fsstress for file locks and can take a very long time to make even a single pass over the filesystem and exit, which means the test just takes forever to run. Once we've decided to tear down the duperemove processes let's just send them SIGINT and then wait for them to exit. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- tests/generic/561 | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/generic/561 b/tests/generic/561 index c11d5bfa..2f3eff3c 100755 --- a/tests/generic/561 +++ b/tests/generic/561 @@ -47,6 +47,7 @@ function end_test() # stop duperemove running if [ -e $dupe_run ]; then rm -f $dupe_run + kill -INT $dedup_pids wait $dedup_pids fi