tests: remove udf/101
[xfstests-dev.git] / tests / generic / 345
1 #! /bin/bash
2 # FSQA Test No. 345
3 #
4 # Test races between mmap from racing processes with and without prefaulting.
5 #
6 #-----------------------------------------------------------------------
7 #
8 # Copyright (C) 2016 SUSE Linux Products GmbH. All Rights Reserved.
9 # Author: Jan Kara <jack@suse.cz>
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35         cd /
36         rm -f $tmp.*
37 }
38
39 # get standard environment and checks
40 . ./common/rc
41
42 # real QA test starts here
43 _supported_fs generic
44 _supported_os Linux
45 _require_scratch
46 _require_test_program "holetest"
47
48 rm -f $seqres.full
49
50 _scratch_mkfs >>$seqres.full 2>&1
51 _scratch_mount
52
53 src/holetest -f -F $SCRATCH_MNT/testfile 16
54 src/holetest -f -F $SCRATCH_MNT/testfile 256
55 src/holetest -f -F -r $SCRATCH_MNT/testfile 16
56 src/holetest -f -F -r $SCRATCH_MNT/testfile 256
57
58 status=0
59 exit