xfstests: convert tests to use new results directory
[xfstests-dev.git] / tests / generic / 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 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 tmp=/tmp/$$
36 status=0        # success is the default!
37 trap "_cleanup; exit \$status" 0 1 2 3 15
38
39 _cleanup()
40 {
41     cd /
42     rm -f $tmp.*
43     rm -rf $testdir/$seq
44     _cleanup_testdir
45 }
46
47 # get standard environment, filters and checks
48 . ./common.rc
49 . ./common.filter
50
51 # real QA test starts here
52 _supported_fs generic
53 _supported_os IRIX Linux
54
55 _setup_testdir
56
57 status=1 # default failure 
58 sourcefile=$tmp.nametest
59 seed=1
60 iterations=100000
61 num_filenames=100
62
63 # need to create an input file with a list of
64 # filenames on each line 
65 i=1
66 while [ $i -le $num_filenames ]; do
67   echo "nametest.$i" >>$sourcefile
68   let i=$i+1
69 done
70
71 mkdir $testdir/$seq
72 cd $testdir/$seq
73 $here/src/nametest -l $sourcefile -s $seed -i $iterations -z
74
75 # success, all done
76 status=0
77 exit