xfs: fix old fuzz test invocations of xfs_repair
[xfstests-dev.git] / tests / generic / 493
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 Facebook.  All Rights Reserved.
4 #
5 # FS QA Test 493
6 #
7 # Check that we can't dedupe a swapfile.
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 -f $tmp.*
22 }
23
24 . ./common/rc
25 . ./common/filter
26 . ./common/reflink
27
28 rm -f $seqres.full
29
30 _supported_fs generic
31 _require_scratch_swapfile
32 _require_scratch_dedupe
33
34 echo "Format and mount"
35 _scratch_mkfs > $seqres.full 2>&1
36 _scratch_mount >> $seqres.full 2>&1
37
38 testdir="$SCRATCH_MNT/test-$seq"
39 mkdir "$testdir"
40
41 blocks=160
42 blksz=65536
43
44 echo "Initialize file"
45 _format_swapfile "$testdir/file1" $((blocks * blksz))
46 swapon "$testdir/file1"
47
48 touch "$testdir/file2"
49 $CHATTR_PROG +C "$testdir/file2" >/dev/null 2>&1
50
51 echo "Try to dedupe"
52 cp "$testdir/file1" "$testdir/file2"
53 _dedupe_range "$testdir/file1" 0 "$testdir/file2" 0 $((blocks * blksz))
54 _dedupe_range "$testdir/file2" 0 "$testdir/file1" 0 $((blocks * blksz))
55
56 echo "Tear it down"
57 swapoff "$testdir/file1"
58
59 status=0
60 exit