xfstests: fix TEST_MNT typos (should be TEST_DIR)
[xfstests-dev.git] / 285
1 #! /bin/bash
2 # FS QA Test No. 285
3 #
4 # SEEK_DATA/SEEK_HOLE sanity tests.
5 #
6 # Improved by Jeff.liu@oracle.com
7 # Creater: josef@redhat.com
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2011 Oracle Inc.  All Rights Reserved.
11 # Copyright (c) 2011 Red Hat.  All Rights Reserved.
12 #
13 # This program is free software; you can redistribute it and/or
14 # modify it under the terms of the GNU General Public License as
15 # published by the Free Software Foundation.
16 #
17 # This program is distributed in the hope that it would be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write the Free Software Foundation,
24 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
25 #-----------------------------------------------------------------------
26 #
27 # creator
28 owner=jeff.liu@oracle.com
29
30 seq=`basename $0`
31 echo "QA output created by $seq"
32
33 here=`pwd`
34 status=1        # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 # get standard environment, filters and checks
38 . ./common.rc
39 . ./common.filter
40
41 _supported_fs generic
42 _supported_os Linux
43
44 BASE_TEST_FILE=$TEST_DIR/seek_sanity_testfile
45
46 [ -x $here/src/seek_sanity_test ] || _notrun "seek_sanitfy_tester not built"
47
48 _cleanup()
49 {
50         eval "rm -f $BASE_TEST_FILE.*"
51 }
52
53 $here/src/seek_sanity_test $BASE_TEST_FILE > $seq.full 2>&1 ||
54         _fail "seek sanity check failed!"
55
56 # success, all done
57 status=0
58 exit