generic: copy_file_range swapfile test
[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 _supported_os Linux
27
28 _require_test
29 _require_seek_data_hole
30
31 base_test_file=$TEST_DIR/seek_sanity_testfile.$seq
32
33 _require_test_program "seek_sanity_test"
34
35 _cleanup()
36 {
37         cd /
38         rm -f $tmp.*
39         rm -f $base_test_file*
40 }
41
42 _run_seek_sanity_test -s 19 -e 20 $base_test_file > $seqres.full 2>&1 ||
43         _fail "seek sanity check failed!"
44
45 # success, all done
46 status=0
47 exit