btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / btrfs / 153
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 NETGEAR, Inc.  All Rights Reserved.
4 #
5 # FS QA Test 153
6 #
7 # Test for leaking quota reservations on preallocated files.
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 _require_xfs_io_command "falloc"
38
39 _scratch_mkfs >/dev/null
40 _scratch_mount
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 100M 0/5 $SCRATCH_MNT
45
46 testfile1=$SCRATCH_MNT/testfile1
47 testfile2=$SCRATCH_MNT/testfile2
48 $XFS_IO_PROG -fc "falloc 0 80M" $testfile1
49 $XFS_IO_PROG -fc "pwrite 0 80M" $testfile1 > /dev/null
50 $XFS_IO_PROG -fc "falloc 0 19M" $testfile2
51 $XFS_IO_PROG -fc "pwrite 0 19M" $testfile2 > /dev/null
52
53 echo "Silence is golden"
54 status=0
55 exit