xfstests: cleanup duplicates in all tests
[xfstests-dev.git] / tests / xfs / 297
1 #! /bin/bash
2 # FS QA Test No. 297
3 #
4 # Test freeze/unfreeze file system randomly under fsstress
5 # Regression test for commit:
6 # 437a255 xfs: fix direct IO nested transaction deadlock.
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2013 Red Hat, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44
45 # real QA test starts here
46 _supported_fs xfs
47 _supported_os IRIX Linux
48
49 _require_scratch
50 _require_freeze
51
52 rm -f $seqres.full
53 _scratch_mkfs_xfs -d agcount=16,su=256k,sw=12 -l su=256k,size=2560b >/dev/null 2>&1
54 _scratch_mount >/dev/null 2>&1
55
56 STRESS_DIR="$SCRATCH_MNT/testdir"
57 mkdir -p $STRESS_DIR
58
59 $FSSTRESS_PROG -d $STRESS_DIR -n 100 -p 1000 $FSSTRESS_AVOID >/dev/null 2>&1 &
60
61 # Freeze/unfreeze file system randomly
62 echo "Start freeze/unfreeze randomly" | tee -a $seqres.full
63 LOOP=10
64 while [ $LOOP -gt 0 ];do
65         TIMEOUT=`expr $RANDOM % 5`
66         sleep $TIMEOUT
67         echo "* Freeze file system after sleeping $TIMEOUT seconds" >>$seqres.full
68         xfs_freeze -f $SCRATCH_MNT
69         if [ $? -ne 0 ];then
70                 echo " - Error: freeze filesystem failed" | tee -a $seqres.full
71         fi
72         TIMEOUT=`expr $RANDOM % 3`
73         sleep $TIMEOUT
74         echo "* Unfreeze file system after sleeping $TIMEOUT seconds" >>$seqres.full
75         xfs_freeze -u $SCRATCH_MNT
76         if [ $? -ne 0 ];then
77                 echo " - Error: unfreeze filesystem failed" | tee -a $seqres.full
78         fi
79         let LOOP=$LOOP-1
80 done
81 echo "Test done" | tee -a $seqres.full
82 killall -q $FSSTRESS_PROG
83 wait
84
85 _check_scratch_fs
86 status=0
87 exit