Capture more state on failure... dd the contents of the filesystem
[xfstests-dev.git] / 007
1 #! /bin/sh
2 # XFS QA Test No. 007
3 # $Id: 1.1 $
4 #
5 # drive the src/nametest program
6 # which does a heap of open(create)/unlink/stat
7 # and checks that error codes make sense with its
8 # memory of the files created.
9 #
10 #-----------------------------------------------------------------------
11 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
12
13 # This program is free software; you can redistribute it and/or modify it
14 # under the terms of version 2 of the GNU General Public License as
15 # published by the Free Software Foundation.
16
17 # This program is distributed in the hope that it would be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20
21 # Further, this software is distributed without any warranty that it is
22 # free of the rightful claim of any third person regarding infringement
23 # or the like.  Any license provided herein, whether implied or
24 # otherwise, applies only to this software file.  Patent licenses, if
25 # any, provided herein do not apply to combinations of this program with
26 # other software, or any other product whatsoever.
27
28 # You should have received a copy of the GNU General Public License along
29 # with this program; if not, write the Free Software Foundation, Inc., 59
30 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
31
32 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
33 # Mountain View, CA  94043, or:
34
35 # http://www.sgi.com 
36
37 # For further information regarding this notice, see: 
38
39 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
40 #-----------------------------------------------------------------------
41 #
42 # creator
43 owner=tes@sherman.melbourne.sgi.com
44
45 seq=`basename $0`
46 echo "QA output created by $seq"
47
48 here=`pwd`
49 tmp=/tmp/$$
50 status=0        # success is the default!
51 trap "_cleanup; exit \$status" 0 1 2 3 15
52
53 _cleanup()
54 {
55     rm -f $tmp.*
56     rm -rf $TEST_DIR/$seq
57 }
58
59 # get standard environment, filters and checks
60 . ./common.rc
61 . ./common.filter
62
63 # real QA test starts here
64 status=1 # default failure 
65 sourcefile=$tmp.nametest
66 seed=1
67 iterations=100000
68 num_filenames=100
69
70 # need to create an input file with a list of
71 # filenames on each line 
72 i=1
73 while [ $i -le $num_filenames ]; do
74   echo "nametest.$i" >>$sourcefile
75   i=`expr $i + 1`
76 done
77
78 mkdir $TEST_DIR/$seq
79 cd $TEST_DIR/$seq
80 $here/src/nametest -l $sourcefile -s $seed -i $iterations -z
81
82
83 #optional stuff if your test has verbose output to help resolve problems
84 #echo
85 #echo "If failure, check $seq.full (this) and $seq.full.ok (reference)"
86
87
88 # success, all done
89 status=0
90 exit