xfstests: include test subdirectory support
[xfstests-dev.git] / 007
1 #! /bin/bash
2 # FS QA Test No. 007
3 #
4 # drive the src/nametest program
5 # which does a heap of open(create)/unlink/stat
6 # and checks that error codes make sense with its
7 # memory of the files created.
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
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
28 seq=`basename $0`
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=0        # success is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 _cleanup()
37 {
38     cd /
39     rm -f $tmp.*
40     rm -rf $testdir/$seq
41     _cleanup_testdir
42 }
43
44 # get standard environment, filters and checks
45 . ./common.rc
46 . ./common.filter
47
48 # real QA test starts here
49 _supported_fs generic
50 _supported_os IRIX Linux
51
52 _setup_testdir
53
54 status=1 # default failure 
55 sourcefile=$tmp.nametest
56 seed=1
57 iterations=100000
58 num_filenames=100
59
60 # need to create an input file with a list of
61 # filenames on each line 
62 i=1
63 while [ $i -le $num_filenames ]; do
64   echo "nametest.$i" >>$sourcefile
65   let i=$i+1
66 done
67
68 mkdir $testdir/$seq
69 cd $testdir/$seq
70 $here/src/nametest -l $sourcefile -s $seed -i $iterations -z
71
72 # success, all done
73 status=0
74 exit