btrfs: convert tests to SPDX license tags
[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 _supported_os Linux
36 _require_scratch
37 _require_btrfs_qgroup_report
38 _require_xfs_io_command "falloc"
39
40 _scratch_mkfs >/dev/null
41 _scratch_mount
42
43 _run_btrfs_util_prog quota enable $SCRATCH_MNT
44 _run_btrfs_util_prog quota rescan -w $SCRATCH_MNT
45 _run_btrfs_util_prog qgroup limit 100M 0/5 $SCRATCH_MNT
46
47 testfile1=$SCRATCH_MNT/testfile1
48 testfile2=$SCRATCH_MNT/testfile2
49 $XFS_IO_PROG -fc "falloc 0 80M" $testfile1
50 $XFS_IO_PROG -fc "pwrite 0 80M" $testfile1 > /dev/null
51 $XFS_IO_PROG -fc "falloc 0 19M" $testfile2
52 $XFS_IO_PROG -fc "pwrite 0 19M" $testfile2 > /dev/null
53
54 echo "Silence is golden"
55 status=0
56 exit