xfs: fix more xfs_db open-coding instances
[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 echo "QA output created by $seq"
35
36 here=`pwd`
37 tmp=/tmp/$$
38 status=0        # success is the default!
39 trap "_cleanup; exit \$status" 0 1 2 3 15
40
41 _cleanup()
42 {
43     cd /
44     rm -f $tmp.*
45     rm -rf $SCRATCH_MNT/$seq
46 }
47
48 # get standard environment, filters and checks
49 . ./common/rc
50 . ./common/filter
51
52 # real QA test starts here
53 _supported_fs xfs
54 _supported_os IRIX Linux
55
56 if [ $XFSPROGS_VERSION -lt 21000 ]; then
57     _notrun "this test requires case-insensitive support"
58 fi
59
60 _require_scratch
61 rm -f $seqres.full
62
63 _scratch_mkfs -n version=ci >/dev/null 2>&1
64 _scratch_mount
65
66 status=1 # default failure
67 sourcefile=$tmp.ci_nametest
68 seed=1
69
70 # need to create an input file with a list of filenames on each line
71 # do number of files for testing to try each directory format
72
73 # start with small number of files and increase by 4x for each run
74 max_files=6144
75 num_files=6
76
77 mkdir $SCRATCH_MNT/$seq
78 while [ $num_files -le $max_files ]; do
79   iterations=`expr $num_files \* 10`
80   $here/src/genhashnames $SCRATCH_MNT/$seq/$num_files $num_files $seed >>$sourcefile
81   mkdir $SCRATCH_MNT/$seq/$num_files
82   $here/src/nametest -l $sourcefile -s $seed -i $iterations -z -c
83   num_files=`expr $num_files \* 4`
84 done
85
86 # success, all done
87 status=0
88 exit