From: Eric Sandeen Date: Fri, 28 Sep 2012 03:33:45 +0000 (+0000) Subject: xfstests 068: Add mmap load X-Git-Tag: v2022.05.01~3586 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=680e88e7cadaca6745d95be4ce5b491c593c64d7;p=users%2Fhch%2Fxfstests-dev.git xfstests 068: Add mmap load Test 068 is the go-to test for freeze deadlock coverage; unfortunately it only uses fsstress, which doesn't do any mmap IO. Using the existing fstest binary gets us a cheap mmap exerciser as well. Signed-off-by: Eric Sandeen Reviewed-by: Dave Chinner Reviewed-by: Christoph Hellwig Signed-off-by: Mark Tinguely --- diff --git a/068 b/068 index 617420cf1..a641e2f7d 100755 --- a/068 +++ b/068 @@ -90,6 +90,21 @@ touch $tmp.running rmdir $STRESS_DIR } & +# start fstest -m loop in a background block; this gets us mmap coverage +{ + FSTEST_DIR="$SCRATCH_MNT/fstest_test_dir" + mkdir "$FSTEST_DIR" + + procs=2 + while [ -f "$tmp.running" ] + do + src/fstest -m -p $FSTEST_DIR -n $procs -f 4 > /dev/null 2>&1 + done + + rm -rf $FSTEST_DIR/* + rmdir $FSTEST_DIR +} & + i=0 let ITERATIONS=$ITERATIONS-1