xfstests: remove 285.full and 286.full
[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
25 seq=`basename $0`
26 echo "QA output created by $seq"
27
28 status=0
29 trap "exit \$status" 0 1 2 3 15
30
31 # get standard environment, filters and checks
32 . ./common.rc
33 . ./common.filter
34
35 # real QA test starts here
36 _supported_fs generic
37 _supported_os Linux
38
39 _require_fstrim
40 _require_scratch
41
42 _scratch_mkfs >/dev/null 2>&1
43 _scratch_mount
44 _test_batched_discard $SCRATCH_MNT || _notrun "FITRIM not supported on $SCRATCH_DEV"
45
46 echo "[+] Length is zero (should fail)"
47 out=$("$FSTRIM_PROG" -v -o0 -l0 $SCRATCH_MNT 2>&1)
48 [ $? -eq 0 ] && status=1
49 echo $out | _filter_scratch
50
51 echo "[+] Length is smaller than block size (should fail)"
52 out=$("$FSTRIM_PROG" -v -o0 -l100 $SCRATCH_MNT 2>&1)
53 [ $? -eq 0 ] && status=1
54 echo $out | _filter_scratch
55
56 echo "Test done"
57 exit