xfs/419: remove irrelevant swapfile test
[xfstests-dev.git] / tests / xfs / 338
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. 338
6 #
7 # Set rrmapino to zero on an rtrmap 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_fs xfs
30 _require_realtime
31 _require_xfs_scratch_rmapbt
32
33 rm -f "$seqres.full"
34
35 echo "Format and mount"
36 _scratch_mkfs > "$seqres.full" 2>&1
37 _scratch_mount
38
39 echo "Create some files"
40 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f1 >> $seqres.full
41 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f2 >> $seqres.full
42 _scratch_unmount
43
44 echo "Corrupt fs"
45 _scratch_xfs_db -x -c 'sb 0' -c 'addr rrmapino' \
46         -c 'write core.nlinkv2 0' -c 'write core.mode 0' -c 'sb 0' \
47         -c 'write rrmapino 0' >> $seqres.full
48 _try_scratch_mount >> $seqres.full 2>&1 && echo "mount should have failed"
49
50 echo "Repair fs"
51 _scratch_unmount 2>&1 | _filter_scratch
52 _repair_scratch_fs >> $seqres.full 2>&1
53
54 echo "Try to create more files (again)"
55 _scratch_mount
56 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f4 >> $seqres.full
57
58 # success, all done
59 status=0
60 exit