Make "new" script insert appropriate license on tests
[xfstests-dev.git] / 010
1 #! /bin/sh
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 # creator
25 owner=nathans@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=0        # success is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39     rm -f $testdir/DBtest*.{pag,dir}
40     _cleanup_testdir
41 }
42
43 # filter random number output from dbtest
44 #
45 _filter_dbtest()
46 {
47     sed \
48         -e '/were [0-9][0-9]* duplicate/s//were BLEEP duplicate/' \
49         -e '/using [0-9][0-9]* as seed/s//using BLEEP as seed/'
50 }
51
52 # get standard environment, filters and checks
53 . ./common.rc
54 . ./common.filter
55
56 [ -x $here/src/dbtest ] || _notrun "dbtest was not built for this platform"
57
58 # real QA test starts here
59 _supported_fs generic
60 _supported_os IRIX Linux
61
62 _setup_testdir
63
64 rm -f $seq.full
65
66 cd $testdir
67
68 $here/src/dbtest -l 5 -n 1000 2>&1 | tee -a $here/$seq.full | _filter_dbtest
69
70 # success, all done
71 exit