Make sure 167 completes and unmounts scratch correctly

Merge of master-melb:xfs-cmds:28942a by kenmcd.

  run a sync after killing all the fsstress processes to ensure
  they have all completed before trying to unmount scratch.
This commit is contained in:
Dave Chinner
2007-06-20 06:15:19 +00:00
parent 812b331b29
commit f64b53535e
+2 -2
View File
@@ -22,6 +22,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
_cleanup()
{
killall -q -TERM fsstress 2> /dev/null
sync # ensures all fsstress processes died
_cleanup_testdir
}
@@ -49,7 +50,7 @@ _scratch_mount
TEST_FILE=$SCRATCH_MNT/test_file
TEST_PROG=$here/src/unwritten_sync
LOOPS=100
LOOPS=50
echo "*** test unwritten extent conversion under heavy I/O"
@@ -57,7 +58,6 @@ workout
rm -f $TEST_FILE
$TEST_PROG $LOOPS $TEST_FILE
killall -q -TERM fsstress 2> /dev/null
echo " *** test done"