generic: test MADV_POPULATE_READ with IO errors
[xfstests-dev.git] / tests / generic / 490
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 SUSE.  All Rights Reserved.
4 #
5 # FS QA Test No. 490
6 #
7 # Check that SEEK_DATA works properly for offsets in the middle of large holes.
8 # This was broken for ext4 with indirect-block based files and this test checks
9 # for that. The problem has been fixed by commit 2ee3ee06a8fd79 "ext4: fix hole
10 # length detection in ext4_ind_map_blocks()"
11 #
12 . ./common/preamble
13 _begin_fstest auto quick rw seek
14
15 # Import common functions.
16 . ./common/filter
17
18 _supported_fs generic
19
20 _require_test
21 _require_seek_data_hole
22
23 base_test_file=$TEST_DIR/seek_sanity_testfile.$seq
24
25 _require_test_program "seek_sanity_test"
26
27 # Override the default cleanup function.
28 _cleanup()
29 {
30         cd /
31         rm -f $tmp.*
32         rm -f $base_test_file*
33 }
34
35 _run_seek_sanity_test -s 19 -e 20 $base_test_file > $seqres.full 2>&1 ||
36         _fail "seek sanity check failed!"
37
38 # success, all done
39 status=0
40 exit