xfs: force file creation to the data device for certain layout tests
[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 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19 trap "_cleanup; exit \$status" 0 1 2 3 15
20
21 # get standard environment, filters and checks
22 . ./common/rc
23 . ./common/filter
24
25 _supported_fs generic
26
27 _require_test
28 _require_seek_data_hole
29
30 base_test_file=$TEST_DIR/seek_sanity_testfile.$seq
31
32 _require_test_program "seek_sanity_test"
33
34 _cleanup()
35 {
36         cd /
37         rm -f $tmp.*
38         rm -f $base_test_file*
39 }
40
41 _run_seek_sanity_test -s 19 -e 20 $base_test_file > $seqres.full 2>&1 ||
42         _fail "seek sanity check failed!"
43
44 # success, all done
45 status=0
46 exit