xfs/{263,106}: erase max warnings printout
[xfstests-dev.git] / tests / generic / 452
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Intel Corporation.  All Rights Reserved.
4 #
5 # FS QA Test 452
6 #
7 # This is a regression test for kernel patch:
8 #   commit 42d4a99b09cb ("ext4: fix fault handling when mounted with -o dax,ro")
9 # created by Ross Zwisler <ross.zwisler@linux.intel.com>
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14
15 here=`pwd`
16 tmp=/tmp/$$
17 status=1        # failure is the default!
18 trap "_cleanup; exit \$status" 0 1 2 3 15
19
20 _cleanup()
21 {
22         cd /
23         rm -f $tmp.*
24 }
25
26 # get standard environment, filters and checks
27 . ./common/rc
28 . ./common/filter
29
30 # remove previous $seqres.full before test
31 rm -f $seqres.full
32
33 # Modify as appropriate.
34 _supported_fs generic
35 _supported_os Linux
36 _require_scratch
37
38 # we need to be able to execute binaries on scratch
39 _exclude_scratch_mount_option "noexec"
40
41 # real QA test starts here
42 # format and mount
43 _scratch_mkfs > $seqres.full 2>&1
44 _scratch_mount >> $seqres.full 2>&1
45
46 LS=$(which ls --skip-alias --skip-functions)
47 SCRATCH_LS=$SCRATCH_MNT/ls_on_scratch
48 cp $LS $SCRATCH_LS
49
50 $SCRATCH_LS $SCRATCH_LS | _filter_scratch
51
52 _scratch_remount ro
53
54 $SCRATCH_LS $SCRATCH_LS | _filter_scratch
55
56 # success, all done
57 status=0
58 exit