generic/405: test mkfs against thin provision device
[xfstests-dev.git] / tests / generic / 010
1 #! /bin/bash
2 # FS QA Test No. 010
3 #
4 # dbtest
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=0        # success is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33
34 _cleanup()
35 {
36     cd /
37     rm -f $tmp.*
38     rm -f $TEST_DIR/DBtest*.{pag,dir}
39 }
40
41 # filter random number output from dbtest
42 #
43 _filter_dbtest()
44 {
45     sed \
46         -e '/were [0-9][0-9]* duplicate/s//were BLEEP duplicate/' \
47         -e '/using [0-9][0-9]* as seed/s//using BLEEP as seed/'
48 }
49
50 # get standard environment, filters and checks
51 . ./common/rc
52 . ./common/filter
53
54 _require_test_program "dbtest"
55
56 # real QA test starts here
57 _supported_fs generic
58 _supported_os IRIX Linux
59 _require_test
60
61 rm -f $seqres.full
62
63 cd $TEST_DIR
64
65 $here/src/dbtest -l 5 -n 1000 2>&1 | tee -a $seqres.full | _filter_dbtest
66
67 # success, all done
68 exit