No Message Supplied
[xfstests-dev.git] / 005
1 #! /bin/sh
2 # XFS QA Test No. 005
3 # $Id: 1.1 $
4 #
5 # Test symlinks & ELOOP
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2001 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=dxm@sgi.com
41
42 #
43 # note ELOOP limit used to be 32 but changed to 8. Who know what
44 # it might be next.
45 #
46
47 seq=`basename $0`
48 echo "QA output created by $seq"
49
50 here=`pwd`
51 tmp=/tmp/$$
52 status=0        # success is the default!
53 trap "_cleanup; exit \$status" 0 1 2 3 15
54
55 _cleanup()
56 {
57     cd $TEST_DIR
58     rm -f symlink_{0,1,2,3}{0,1,2,3,4,5,6,7,8,9} symlink_self empty_file
59 }
60
61 _touch()
62 {
63     touch $@ 2>&1 | sed \
64         -e "s/creating \`//g" \
65         -e "s/setting times of \`//g" \
66         -e "s/'//g"
67 }
68
69 # get standard environment, filters and checks
70 . ./common.rc
71 . ./common.filter
72
73 # real QA test starts here
74
75 cd $TEST_DIR
76
77 o=empty_file
78 _touch $o
79 for f in symlink_{0,1,2,3}{0,1,2,3,4,5,6,7,8,9}
80 do
81     ln -s $o $f
82     o=$f
83 done
84
85 ln -s symlink_self symlink_self
86
87 echo "*** touch deep symlinks"
88 echo ""
89 _touch symlink_{0,1,2,3}{0,1,2,3,4,5,6,7,8,9}
90 echo ""
91 echo "*** touch recusive symlinks"
92 echo ""
93 _touch symlink_self
94
95 exit