generic/223: make sure all files get created on the data device
[xfstests-dev.git] / tests / generic / 094
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015 Facebook.  All Rights Reserved.
4 #
5 # FS QA Test No. 094
6 #
7 # Run the fiemap (file extent mapping) tester with preallocation enabled
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 # real QA test starts here
29 _supported_fs generic
30 _require_scratch
31 _require_odirect
32 _require_xfs_io_command "fiemap"
33 _require_xfs_io_command "falloc"
34
35 _scratch_mkfs > /dev/null 2>&1
36 _scratch_mount > /dev/null 2>&1
37
38 rm -f $seqres.full
39 fiemapfile=$SCRATCH_MNT/$seq.fiemap
40
41 _require_test_program "fiemap-tester"
42
43 # FIEMAP test doesn't like finding unwritten blocks after it punches out
44 # a partial rt extent.
45 test "$FSTYP" = "xfs" && \
46         _require_file_block_size_equals_fs_block_size $fiemapfile
47
48 seed=`date +%s`
49
50 echo "using seed $seed" >> $seqres.full
51
52 echo "fiemap run with sync"
53 $here/src/fiemap-tester -q -S -s $seed -r 200 $fiemapfile 2>&1 | \
54         tee -a $seqres.full
55
56 echo "fiemap run without sync"
57 $here/src/fiemap-tester -q -s $seed -r 200 $fiemapfile 2>&1 | \
58         tee -a $seqres.full
59
60 status=0
61 exit