xfstests: some refinements on "make depend"
[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_PROG -d $SCRATCH_MNT -p $procs -n $nops $FSSTRESS_AVOID \
48                 >>$seq.full &
49         sleep 2
50 }
51
52 # get standard environment, filters and checks
53 . ./common.rc
54 . ./common.filter
55
56 # real QA test starts here
57 _supported_fs xfs
58 _supported_os Linux
59
60 [ -n "$KILLALL_PROG" ] || _notrun "killall executable not found"
61
62 _setup_testdir
63 _require_scratch
64 _scratch_mkfs_xfs >/dev/null 2>&1
65 _scratch_mount
66
67 TEST_FILE=$SCRATCH_MNT/test_file
68 TEST_PROG=$here/src/unwritten_sync
69 LOOPS=50
70
71 echo "*** test unwritten extent conversion under heavy I/O"
72
73 workout
74
75 rm -f $TEST_FILE
76 $TEST_PROG $LOOPS $TEST_FILE
77
78 echo "     *** test done"
79
80 status=0
81 exit