xfstests: convert tests to use new results directory
[xfstests-dev.git] / tests / xfs / 188
1 #! /bin/bash
2 # FS QA Test No. 188
3 #
4 # drive the src/nametest program for CI mode
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 # All filenames generated map to the same hash
10 # value in XFS stressing leaf block traversal in
11 # node form directories as well.
12 #
13 #-----------------------------------------------------------------------
14 # Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
15 #
16 # This program is free software; you can redistribute it and/or
17 # modify it under the terms of the GNU General Public License as
18 # published by the Free Software Foundation.
19 #
20 # This program is distributed in the hope that it would be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 # GNU General Public License for more details.
24 #
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write the Free Software Foundation,
27 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
28 #
29 #-----------------------------------------------------------------------
30 #
31
32 seq=`basename $0`
33 seqres=$RESULT_DIR/$seq
34 seqres=$RESULT_DIR/$seq
35 seqres=$RESULT_DIR/$seq
36 echo "QA output created by $seq"
37
38 here=`pwd`
39 tmp=/tmp/$$
40 status=0        # success is the default!
41 trap "_cleanup; exit \$status" 0 1 2 3 15
42
43 _cleanup()
44 {
45     cd /
46     rm -f $tmp.*
47     rm -rf $SCRATCH_MNT/$seq
48 }
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53
54 # real QA test starts here
55 _supported_fs xfs
56 _supported_os IRIX Linux
57
58 if [ $XFSPROGS_VERSION -lt 21000 ]; then
59     _notrun "this test requires case-insensitive support"
60 fi
61
62 _require_scratch
63 rm -f $seqres.full
64
65 _scratch_mkfs -n version=ci >/dev/null 2>&1
66 _scratch_mount
67
68 status=1 # default failure
69 sourcefile=$tmp.ci_nametest
70 seed=1
71
72 # need to create an input file with a list of filenames on each line
73 # do number of files for testing to try each directory format
74
75 # start with small number of files and increase by 4x for each run
76 max_files=6144
77 num_files=6
78
79 mkdir $SCRATCH_MNT/$seq
80 while [ $num_files -le $max_files ]; do
81   iterations=`expr $num_files \* 10`
82   $here/src/genhashnames $SCRATCH_MNT/$seq/$num_files $num_files $seed >>$sourcefile
83   mkdir $SCRATCH_MNT/$seq/$num_files
84   $here/src/nametest -l $sourcefile -s $seed -i $iterations -z -c
85   num_files=`expr $num_files \* 4`
86 done
87
88 # success, all done
89 status=0
90 exit