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