xfstests: introduce a common directory
[xfstests-dev.git] / tests / generic / 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
28 seq=`basename $0`
29 seqres=$RESULT_DIR/$seq
30 seqres=$RESULT_DIR/$seq
31 seqres=$RESULT_DIR/$seq
32 echo "QA output created by $seq"
33
34 here=`pwd`
35 status=1        # failure is the default!
36 trap "_cleanup; exit \$status" 0 1 2 3 15
37
38 # get standard environment, filters and checks
39 . ./common/rc
40 . ./common/filter
41
42 _supported_fs generic
43 _supported_os Linux
44
45 BASE_TEST_FILE=$TEST_DIR/seek_sanity_testfile
46
47 [ -x $here/src/seek_sanity_test ] || _notrun "seek_sanitfy_tester not built"
48
49 _cleanup()
50 {
51         eval "rm -f $BASE_TEST_FILE.*"
52 }
53
54 $here/src/seek_sanity_test $BASE_TEST_FILE > $seqres.full 2>&1 ||
55         _fail "seek sanity check failed!"
56
57 # success, all done
58 status=0
59 exit