fstests: check for filesystem FS_IOC_FSSETXATTR support
[xfstests-dev.git] / tests / xfs / 135
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015 Red Hat, Inc. All Rights Reserved.
4 #
5 # FS QA Test No. 135
6 #
7 # This test verifies that the xfsprogs log formatting infrastructure works
8 # correctly for various log stripe unit values. The log is formatted with xfs_db
9 # and verified with xfs_logprint.
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 rm -f $seqres.full
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/log
31
32 # real QA test starts here
33
34 # Modify as appropriate.
35 _supported_fs xfs
36 _supported_os Linux
37 _require_scratch
38 _require_v2log
39 _require_xfs_db_command "logformat"
40
41 _scratch_mkfs >> $seqres.full 2>&1 || _fail "mkfs failed"
42
43 # Reformat the log with various log stripe unit sizes and see if logprint dumps
44 # any errors. Use a cycle value larger than 1 so the log is actually written
45 # (the log is zeroed when cycle == 1).
46 for i in 16 32 64 128 256; do
47         lsunit=$((i * 1024))
48         _scratch_xfs_db -x -c "logformat -c 3 -s $lsunit" | \
49                 tee -a $seqres.full
50         # don't redirect error output so it causes test failure
51         $XFS_LOGPRINT_PROG $SCRATCH_DEV >> $seqres.full
52 done
53
54 # success, all done
55 status=0
56 exit