xfs/530: skip test if user MKFS_OPTIONS screw up formatting
[xfstests-dev.git] / tests / xfs / 005
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2014 Red Hat, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 005
6 #
7 # Test that a bad crc on a primary V5 superblock will fail the mount
8 #
9 # 10e6e65 xfs: be more forgiving of a v4 secondary sb w/ junk in v5 fields
10 # inadvertently caused primary SB CRC failures to not error out, this
11 # is a regression test for that fix.
12 #
13 . ./common/preamble
14 _begin_fstest auto quick
15
16 # Import common functions.
17 . ./common/filter
18
19 # Modify as appropriate.
20 _supported_fs xfs
21
22 _require_scratch_nocheck
23 _require_xfs_mkfs_crc
24
25 _scratch_mkfs_xfs -m crc=1 >> $seqres.full 2>&1 || _fail "mkfs failed"
26
27 # Zap the crc.  xfs_db updates the CRC post-write, so poke it directly
28 $XFS_IO_PROG -c "pwrite 224 4" -c fsync $SCRATCH_DEV | _filter_xfs_io
29
30 # should FAIL, the crc is bad; golden output contains mount failure
31 _try_scratch_mount 2>&1 | _filter_error_mount
32
33 # success, all done
34 status=0
35 exit