xfstests: test ext4 statfs
[xfstests-dev.git] / 288
1 #!/bin/bash
2 # FS QA Test No. 288
3 #
4 # This check the FITRIM argument handling in the corner case where length is
5 # smaller than block size of zero.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright 2012 (C) Red Hat, Inc., Lukas Czerner <lczerner@redhat.com>
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23
24 owner=lczerner@redhat.com
25
26 seq=`basename $0`
27 echo "QA output created by $seq"
28
29 status=0
30 trap "exit \$status" 0 1 2 3 15
31
32 # get standard environment, filters and checks
33 . ./common.rc
34 . ./common.filter
35
36 # real QA test starts here
37 _supported_fs generic
38 _supported_os Linux
39
40 _require_fstrim
41 _require_scratch
42
43 _scratch_mkfs >/dev/null 2>&1
44 _scratch_mount
45 _test_batched_discard $SCRATCH_MNT || _notrun "FITRIM not supported on $SCRATCH_DEV"
46
47 echo "[+] Length is zero (should fail)"
48 out=$("$FSTRIM_PROG" -v -o0 -l0 $SCRATCH_MNT 2>&1)
49 [ $? -eq 0 ] && status=1
50 echo $out | _filter_scratch
51
52 echo "[+] Length is smaller than block size (should fail)"
53 out=$("$FSTRIM_PROG" -v -o0 -l100 $SCRATCH_MNT 2>&1)
54 [ $? -eq 0 ] && status=1
55 echo $out | _filter_scratch
56
57 echo "Test done"
58 exit