Fix up configure problems in xfstests and xfsprogs.
[xfstests-dev.git] / 089
1 #! /bin/sh
2 # FS QA Test No. 089
3 #
4 # Emulate the way Linux mount manipulates /etc/mtab to attempt to
5 # reproduce a possible bug in rename (see src/t_mtab.c).
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=nathans@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=1        # failure is the default!
48 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53
54 addentries()
55 {
56         count=$1
57         pattern="%0$2d"
58
59         while [ $count -gt 0 ]; do
60                 touch `printf $pattern $count`
61                 count=`expr $count - 1`
62         done
63 }
64
65 # real QA test starts here
66 _supported_fs xfs
67 _supported_os Linux
68
69 rm -f $seq.full
70 [ "X$TEST_DIR" = "X" ] && exit 1
71 cd $TEST_DIR
72 rm -fr test
73 mkdir test || exit 1
74 cd $TEST_DIR/test
75 mount > t_mtab
76
77 mtab()
78 {
79         $here/src/t_mtab 50 &
80         $here/src/t_mtab 50 &
81         $here/src/t_mtab 50 &
82         wait
83
84         $here/src/t_mtab 10000
85
86         echo directory entries:
87         ls | grep mtab
88         echo directory entries >> $here/$seq.full
89         ls -li >> $here/$seq.full
90 }
91
92 # directory with only a few entries
93 mtab
94
95 # directory with a hundred more entries, each 4chars wide
96 addentries 100 4
97 mtab
98
99 # directory with a thousand more entries, each 8chars wide
100 addentries 1000 8
101 mtab
102
103 status=0
104 exit