xfs/{263,106}: erase max warnings printout
[xfstests-dev.git] / tests / overlay / 108
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2020 CTERA Networks. All Rights Reserved.
4 #
5 # FS QA Test 108
6 #
7 # Run unionmount testsuite to verify correctness
8 # with multi lower layers, all layers on unique fs,
9 # some layers are on tmpfs.
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 "_unionmount_testsuite_cleanup; exit \$status" 0 1 2 3 15
19
20 # get standard environment, filters and checks
21 . ./common/rc
22 . ./common/filter
23
24 # remove previous $seqres.full before test
25 rm -f $seqres.full
26
27 # real QA test starts here
28
29 _supported_fs overlay
30 _supported_os Linux
31 _require_tmpfs
32 _require_test
33 _require_scratch
34 _require_unionmount_testsuite
35
36 _unionmount_testsuite_run --ov=10 --maxfs=10 --verify
37
38 # success, all done
39 echo "Silence is golden"
40 status=0
41 exit