xfstests: don't assume that falloc_punch implies falloc in test 255
[xfstests-dev.git] / 167
1 #! /bin/bash
2 # FSQA Test No. 167
3 #
4 # unwritten extent conversion test
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2007 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24 # creator
25 owner=dgc@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 rm -f $seq.full
33 status=1    # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 _cleanup()
37 {
38         $KILLALL_PROG -r -q -TERM fsstress 2> /dev/null
39         sync    # ensures all fsstress processes died
40         _cleanup_testdir
41 }
42
43 workout()
44 {
45         procs=100
46         nops=15000
47         FSSTRESS_ARGS=`_scale_fsstress_args -d $SCRATCH_MNT -p $procs -n $nops \
48             $FSSTRESS_AVOID`
49         $FSSTRESS_PROG $FSSTRESS_ARGS >> $seq.full &
50         sleep 2
51 }
52
53 # get standard environment, filters and checks
54 . ./common.rc
55 . ./common.filter
56
57 # real QA test starts here
58 _supported_fs xfs
59 _supported_os Linux
60
61 [ -n "$KILLALL_PROG" ] || _notrun "killall executable not found"
62
63 _setup_testdir
64 _require_scratch
65 _scratch_mkfs_xfs >/dev/null 2>&1
66 _scratch_mount
67
68 TEST_FILE=$SCRATCH_MNT/test_file
69 TEST_PROG=$here/src/unwritten_sync
70 LOOPS=50
71
72 echo "*** test unwritten extent conversion under heavy I/O"
73
74 workout
75
76 rm -f $TEST_FILE
77 $TEST_PROG $LOOPS $TEST_FILE
78
79 echo "     *** test done"
80
81 status=0
82 exit