btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / xfs / 236
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. 236
6 #
7 # Ensure that we can create enough distinct rmapbt entries to force creation
8 # of a multi-level rmap btree.  Delete and recreate a few times to
9 # exercise the rmap btree grow/shrink functions.
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14
15 here=`pwd`
16 tmp=/tmp/$$
17 status=1    # failure is the default!
18 trap "_cleanup; exit \$status" 0 1 2 3 15
19
20 _cleanup()
21 {
22     cd /
23     umount $SCRATCH_MNT > /dev/null 2>&1
24     rm -rf $tmp.*
25 }
26
27 # get standard environment, filters and checks
28 . ./common/rc
29 . ./common/filter
30
31 # real QA test starts here
32 _supported_fs xfs
33 _require_xfs_scratch_rmapbt
34 _require_xfs_io_command "fpunch"
35
36 rm -f $seqres.full
37
38 _scratch_mkfs >/dev/null 2>&1
39 _scratch_mount
40
41 testdir=$SCRATCH_MNT/test-$seq
42 mkdir $testdir
43
44 echo "Create the original file blocks"
45 blksz="$(_get_block_size $testdir)"
46 nr_blks=$((8 * blksz / 12))
47
48 for i in 1 2 x; do
49         _pwrite_byte 0x61 0 $((blksz * nr_blks)) $testdir/file1 >> $seqres.full
50         _pwrite_byte 0x62 0 $((blksz * nr_blks)) $testdir/file2 >> $seqres.full
51         sync
52
53         echo "$i: Reflink every other block"
54         seq 1 2 $((nr_blks - 1)) | while read nr; do
55                 $XFS_IO_PROG -c "fpunch $((nr * blksz)) $blksz" $testdir/file2 >> $seqres.full
56         done
57         umount $SCRATCH_MNT
58         _check_scratch_fs
59         _scratch_mount
60
61         test $i = "x" && break
62
63         echo "$i: Delete both files"
64         rm -rf $testdir/file1 $testdir/file2
65         umount $SCRATCH_MNT
66         _check_scratch_fs
67         _scratch_mount
68 done
69
70 # success, all done
71 status=0
72 exit