generic/077: fall back to /usr if /lib/modules doesn't exist
[xfstests-dev.git] / tests / generic / 018
1 #! /bin/bash
2 # FS QA Test No. generic/018
3 #
4 # Basic defragmentation sanity tests
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2009 Eric Sandeen.  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 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=tmp/$$
30 status=1        # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35     cd /
36     rm -f $tmp.*
37 }
38
39 # get standard environment, filters and checks
40 . ./common/rc
41 . ./common/filter
42 . ./common/defrag
43
44 # real QA test starts here
45 _supported_fs generic
46 _supported_os Linux
47
48 # We require scratch so that we'll have free contiguous space
49 _require_scratch
50 _scratch_mkfs >/dev/null 2>&1
51 _scratch_mount
52
53 _require_defrag
54
55 fragfile=$SCRATCH_MNT/fragfile.$$
56
57 rm -f $fragfile
58
59 # Craft some fragmented files, defrag them, check the result.
60
61 echo "zero-length file:" | tee -a $seqres.full
62 touch $fragfile
63 _defrag --before 0 --after 0 $fragfile
64
65 echo "Sparse file (no blocks):" | tee -a $seqres.full
66 $XFS_IO_PROG -f -c "truncate 1m" $fragfile
67 _defrag --before 0 --after 0 $fragfile
68
69 echo "Contiguous file:" | tee -a $seqres.full
70 dd if=/dev/zero of=$fragfile bs=4k count=4 &>/dev/null
71 _defrag --before 1 --after 1 $fragfile
72
73 echo "Write backwards sync, but contiguous - should defrag to 1 extent" | tee -a $seqres.full
74 for I in `seq 9 -1 0`; do
75         dd if=/dev/zero of=$fragfile bs=4k count=1 conv=notrunc seek=$I oflag=sync &>/dev/null
76 done
77 _defrag --before 10 --after 1 $fragfile
78
79 echo "Write backwards sync leaving holes - defrag should do nothing" | tee -a $seqres.full
80 for I in `seq 31 -2 0`; do
81         dd if=/dev/zero of=$fragfile bs=4k count=1 conv=notrunc seek=$I oflag=sync &>/dev/null
82 done
83 _defrag --before 16 --after 16 $fragfile
84
85 echo "Write forwards sync leaving holes - defrag should do nothing" | tee -a $seqres.full
86 for I in `seq 0 2 31`; do
87         dd if=/dev/zero of=$fragfile bs=4k count=1 conv=notrunc seek=$I oflag=sync &>/dev/null
88 done
89 _defrag --before 16 --after 16 $fragfile
90
91 rm -f $seqres.full
92 status=0
93 exit