fstests: convert remaining tests to SPDX license tags
[xfstests-dev.git] / tests / xfs / 333
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. 333
6 #
7 # Set rrmapino to another inode on an non-rt rmap fs and see if repair fixes it.
8 #
9 seq=`basename "$0"`
10 seqres="$RESULT_DIR/$seq"
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         cd /
21         rm -rf "$tmp".*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27
28 # real QA test starts here
29 _supported_os Linux
30 _supported_fs xfs
31 _require_xfs_scratch_rmapbt
32 _disable_dmesg_check
33
34 rm -f "$seqres.full"
35
36 unset SCRATCH_RTDEV
37
38 echo "Format and mount"
39 _scratch_mkfs > "$seqres.full" 2>&1
40 rrmapino="$(_scratch_xfs_db -c 'sb 0' -c 'p rrmapino' 2>&1)"
41 test "${rrmapino}" = "field rrmapino not found" && _notrun "realtime rmapbt not supported"
42 _scratch_mount
43
44 echo "Create some files"
45 $XFS_IO_PROG -f -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f1 >> $seqres.full
46 $XFS_IO_PROG -f -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f2 >> $seqres.full
47 echo garbage > $SCRATCH_MNT/f3
48 ino=$(stat -c '%i' $SCRATCH_MNT/f3)
49 _scratch_unmount
50
51 echo "Corrupt fs"
52 _scratch_xfs_db -x -c 'sb 0' -c "write rrmapino $ino" >> $seqres.full
53 _try_scratch_mount 2>&1 | _filter_error_mount
54
55 echo "Test done, mount should have failed"
56
57 # success, all done
58 status=0
59 exit