16d674d1e899629486792cf11299f9ff0399a20c
[xfstests-dev.git] / tests / btrfs / 076
1 #! /bin/bash
2 # FS QA Test No. btrfs/076
3 #
4 # Regression test for btrfs incorrect inode ratio detection.
5 # This was fixed in the following linux kernel patch:
6 #
7 #     Btrfs: fix incorrect compression ratio detection
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2014 Wang Shilong.  All Rights Reserved.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 #-----------------------------------------------------------------------
25 #
26
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33
34 status=1        # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39         cd /
40         rm -fr $tmp
41 }
42
43 # get standard environment, filters and checks
44 . ./common/rc
45 . ./common/filter
46 . ./common/defrag
47
48 # real QA test starts here
49 _supported_fs btrfs
50 _supported_os Linux
51 _require_test
52 _require_scratch
53 _need_to_be_root
54
55 rm -f $seqres.full
56
57 _scratch_mkfs >> $seqres.full 2>&1
58 _scratch_mount "-o compress=lzo"
59
60 $XFS_IO_PROG -f -c "pwrite 0 10M" -c "fsync" \
61         $SCRATCH_MNT/data >> $seqres.full 2>&1
62
63 _extent_count $SCRATCH_MNT/data
64
65 $XFS_IO_PROG -f -c "pwrite 0 $((4096*33))" -c "fsync" \
66         $SCRATCH_MNT/data >> $seqres.full 2>&1
67
68 $XFS_IO_PROG -f -c "pwrite 0 10M" -c "fsync" \
69         $SCRATCH_MNT/data >> $seqres.full 2>&1
70
71 _extent_count $SCRATCH_MNT/data
72
73 status=0
74 exit