xfs: fix old fuzz test invocations of xfs_repair
[xfstests-dev.git] / tests / generic / 559
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 Red Hat Inc.  All Rights Reserved.
4 #
5 # FS QA Test generic/559
6 #
7 # Dedupe a single big file and verify integrity
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 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27 . ./common/reflink
28
29 # remove previous $seqres.full before test
30 rm -f $seqres.full
31
32 # real QA test starts here
33 _supported_fs generic
34 _require_scratch_duperemove
35
36 fssize=$((2 * 1024 * 1024 * 1024))
37 _scratch_mkfs_sized $fssize > $seqres.full 2>&1
38 _scratch_mount >> $seqres.full 2>&1
39
40 # fill the fs with a big file has same contents
41 $XFS_IO_PROG -f -c "pwrite -S 0x55 0 $fssize" $SCRATCH_MNT/${seq}.file \
42         >> $seqres.full 2>&1
43 md5sum $SCRATCH_MNT/${seq}.file > ${tmp}.md5sum
44
45 echo "= before cycle mount ="
46 # Dedupe with 1M blocksize
47 $DUPEREMOVE_PROG -dr --dedupe-options=same -b 1048576 $SCRATCH_MNT/ >>$seqres.full 2>&1
48 # Verify integrity
49 md5sum -c --quiet ${tmp}.md5sum
50 # Dedupe with 64k blocksize
51 $DUPEREMOVE_PROG -dr --dedupe-options=same -b 65536 $SCRATCH_MNT/ >>$seqres.full 2>&1
52 # Verify integrity again
53 md5sum -c --quiet ${tmp}.md5sum
54
55 # umount and mount again, verify pagecache contents don't mutate
56 _scratch_cycle_mount
57 echo "= after cycle mount ="
58 md5sum -c --quiet ${tmp}.md5sum
59
60 status=0
61 exit