From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dmitry Monakhov Subject: [PATCH 2/9] xfstests: freeze fsstress options for 117'th Date: Thu, 3 Nov 2011 21:55:46 +0400 Message-ID: <1320342953-7973-2-git-send-email-dmonakhov@openvz.org> References: <1320342953-7973-1-git-send-email-dmonakhov@openvz.org> Cc: xfs@oss.sgi.com, hch@lst.de, aelder@sgi.com, tytso@mit.edu, Dmitry Monakhov To: linux-fsdevel@vger.kernel.org Return-path: Received: from mail-bw0-f46.google.com ([209.85.214.46]:43728 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756415Ab1KCR4D (ORCPT ); Thu, 3 Nov 2011 13:56:03 -0400 Received: by mail-bw0-f46.google.com with SMTP id 11so1290001bke.19 for ; Thu, 03 Nov 2011 10:56:02 -0700 (PDT) In-Reply-To: <1320342953-7973-1-git-send-email-dmonakhov@openvz.org> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: 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 --- 117 | 39 ++++++++++++++++++++++++++++----------- 1 files changed, 28 insertions(+), 11 deletions(-) diff --git a/117 b/117 index edec157..2e3f658 100755 --- 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 -- 1.7.1