]> www.infradead.org Git - users/hch/xfstests-dev.git/commitdiff
xfstests: freeze fsstress options for 117'th
authorDmitry Monakhov <dmonakhov@openvz.org>
Thu, 3 Nov 2011 17:55:46 +0000 (21:55 +0400)
committerChristoph Hellwig <hch@lst.de>
Thu, 3 Nov 2011 19:01:13 +0000 (19:01 +0000)
This is regression tescase for explicit combination of seed+fs_opts.
Let's hardcode all options to prevent interactions with fsstress
changes in future.

Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
117

diff --git a/117 b/117
index edec1572772c8487345bd0363771b7eca9884e99..2e3f658e3000ec7136956c01dcc77075e8a6dd7e 100755 (executable)
--- a/117
+++ b/117
@@ -33,8 +33,34 @@ tmp=/tmp/$$
 status=1       # failure is the default!
 trap "_cleanup; exit \$status" 0 1 2 3 15
 
-# seed for fsstress known to cause curruptions
+# seed and options for fsstress known to cause curruptions
 seed=1122413794
+fss_ops=" -z \
+    -f attr_remove=100 \
+    -f attr_set=100 \
+    -f chown=3 \
+    -f creat=4 \
+    -f dread=4 \
+    -f dwrite=4 \
+    -f fdatasync=1 \
+    -f fsync=1 \
+    -f getdents=1 \
+    -f link=1 \
+    -f mkdir=2 \
+    -f mknod=2 \
+    -f read=1 \
+    -f readlink=1 \
+    -f rename=2 \
+    -f rmdir=1 \
+    -f setxattr=1 \
+    -f stat=1 \
+    -f symlink=2 \
+    -f sync=1 \
+    -f truncate=2 \
+    -f unlink=1 \
+    -f write=4 \
+    -s $seed \
+    -m 31 -n 1000 -p 1"
 
 ITERATIONS=10
 
@@ -76,16 +102,7 @@ while [ $i -lt $ITERATIONS ]; do
     echo fsstress iteration: $i | tee -a $seq.full
     $FSSTRESS_PROG \
        -d $SCRATCH_MNT/fsstress \
-       -f allocsp=0 \
-       -f freesp=0 \
-       -f bulkstat=0 \
-       -f bulkstat1=0 \
-       -f resvsp=0 \
-       -f unresvsp=0 \
-       -f attr_set=100 \
-       -f attr_remove=100 \
-        -s $seed \
-       -p 1 -n 1000 -S c >>$seq.full 2>&1
+       $fss_ops -S c >>$seq.full 2>&1
 
     let i=$i+1
 done