tests: remove IRIX support from tests also supported on Linux
[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 Linux
55 _require_scratch
56 _require_xfs_mkfs_ciname
57 rm -f $seqres.full
58
59 _scratch_mkfs -n version=ci >/dev/null 2>&1
60 _scratch_mount
61
62 status=1 # default failure
63 sourcefile=$tmp.ci_nametest
64 seed=1
65
66 # need to create an input file with a list of filenames on each line
67 # do number of files for testing to try each directory format
68
69 # start with small number of files and increase by 4x for each run
70 max_files=6144
71 num_files=6
72
73 mkdir $SCRATCH_MNT/$seq
74 while [ $num_files -le $max_files ]; do
75   iterations=`expr $num_files \* 10`
76   $here/src/genhashnames $SCRATCH_MNT/$seq/$num_files $num_files $seed >>$sourcefile
77   mkdir $SCRATCH_MNT/$seq/$num_files
78   $here/src/nametest -l $sourcefile -s $seed -i $iterations -z -c
79   num_files=`expr $num_files \* 4`
80 done
81
82 # success, all done
83 status=0
84 exit