btrfs: test incremental send after removing a directory and all its files
[xfstests-dev.git] / tests / btrfs / 126
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016 Fujitsu.  All Rights Reserved.
4 #
5 # FS QA Test 126
6 #
7 # Regression test for leaking data space after hitting EDQUOTA
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
28 # remove previous $seqres.full before test
29 rm -f $seqres.full
30
31 # real QA test starts here
32
33 # Modify as appropriate.
34 _supported_fs btrfs
35 _require_scratch
36 _require_btrfs_qgroup_report
37
38 _scratch_mkfs >/dev/null
39 # Use enospc_debug mount option to trigger restrict space info check
40 _scratch_mount "-o enospc_debug"
41
42 _run_btrfs_util_prog quota enable $SCRATCH_MNT
43 _run_btrfs_util_prog quota rescan -w $SCRATCH_MNT
44 _run_btrfs_util_prog qgroup limit 512K 0/5 $SCRATCH_MNT
45
46 # The amount of written data may change due to different nodesize at mkfs time,
47 # so redirect stdout to seqres.full.
48 # Also, EDQUOTA is expected, which can't be redirected due to the limitation
49 # of _filter_xfs_io, so golden output will include EDQUOTA error message
50 _pwrite_byte 0xcdcdcdcd 0 1M $SCRATCH_MNT/test_file 2>&1 >> $seqres.full | \
51         _filter_xfs_io_error
52
53 # Fstests will umount the fs, and at umount time, kernel warning will be
54 # triggered
55
56 # success, all done
57 status=0
58 exit