generic: test MADV_POPULATE_READ with IO errors
[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 . ./common/preamble
10 _begin_fstest auto quick qgroup limit
11
12 # Import common functions.
13 . ./common/filter
14
15 # real QA test starts here
16
17 # Modify as appropriate.
18 _supported_fs btrfs
19 _require_scratch
20 _require_btrfs_qgroup_report
21
22 # This test requires specific data space usage, skip if we have compression
23 # enabled.
24 _require_no_compress
25
26 _scratch_mkfs >/dev/null
27 # Use enospc_debug mount option to trigger restrict space info check
28 _scratch_mount "-o enospc_debug"
29
30 _run_btrfs_util_prog quota enable $SCRATCH_MNT
31 _run_btrfs_util_prog quota rescan -w $SCRATCH_MNT
32 _run_btrfs_util_prog qgroup limit 512K 0/5 $SCRATCH_MNT
33
34 # The amount of written data may change due to different nodesize at mkfs time,
35 # so redirect stdout to seqres.full.
36 # Also, EDQUOTA is expected, which can't be redirected due to the limitation
37 # of _filter_xfs_io, so golden output will include EDQUOTA error message
38 _pwrite_byte 0xcdcdcdcd 0 1M $SCRATCH_MNT/test_file 2>&1 >> $seqres.full | \
39         _filter_xfs_io_error
40
41 # Fstests will umount the fs, and at umount time, kernel warning will be
42 # triggered
43
44 # success, all done
45 status=0
46 exit