xfs/530: skip test if user MKFS_OPTIONS screw up formatting
[xfstests-dev.git] / tests / xfs / 277
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 277
6 #
7 # Check that getfsmap reports internal log devices
8 #
9 . ./common/preamble
10 _begin_fstest auto quick rmap fsmap
11
12 # Override the default cleanup function.
13 _cleanup()
14 {
15         cd /
16         rm -rf "$tmp".* $TEST_DIR/fsmap $TEST_DIR/testout
17 }
18
19 # Import common functions.
20 . ./common/filter
21
22 # real QA test starts here
23 _supported_fs xfs
24 _require_xfs_scratch_rmapbt
25 _require_xfs_io_command "fsmap"
26 if [ "$USE_EXTERNAL" = "yes" ] && [ -n "$SCRATCH_LOGDEV" ]; then
27         _notrun "Cannot have external log device"
28 fi
29
30 rm -f "$seqres.full"
31
32 echo "Format and mount"
33 _scratch_mkfs > "$seqres.full" 2>&1
34 _scratch_mount
35
36 echo "Get fsmap" | tee -a $seqres.full
37 $XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT >> $seqres.full
38 $XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT | tr '[]()' '    ' > $TEST_DIR/fsmap
39
40 echo "Check device field of FS metadata and journalling log"
41 data_dev=$(grep 'static fs metadata' $TEST_DIR/fsmap | head -n 1 | awk '{print $2}')
42 journal_dev=$(grep 'journalling log' $TEST_DIR/fsmap | head -n 1 | awk '{print $2}')
43 test "${data_dev}" = "${journal_dev}" || echo "data ${data_dev} journal ${journal_dev}?"
44
45 # success, all done
46 status=0
47 exit