xfstests: remove 285.full and 286.full
[xfstests-dev.git] / 005
1 #! /bin/bash
2 # FS QA Test No. 005
3 #
4 # Test symlinks & ELOOP
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 #
26 # Note1: On Linux, ELOOP limit used to be 32 but changed to 8, and lately
27 # its become 5.  Who knows what it might be next.
28 # Note2: On IRIX, the limit is around the 30 mark.
29
30 # What we are looking for here is: no panic due to blowing the stack;
31 # and that the ELOOP error code is returned at some point (the actual
32 # limit point is unimportant, just checking that we do hit it).
33
34
35 seq=`basename $0`
36 echo "QA output created by $seq"
37
38 here=`pwd`
39 tmp=/tmp/$$
40 status=0        # success is the default!
41 trap "_cleanup; exit \$status" 0 1 2 3 15
42
43 _cleanup()
44 {
45     cd $testdir
46     rm -f symlink_{0,1,2,3,4}{0,1,2,3,4,5,6,7,8,9} symlink_self empty_file
47     cd /
48     _cleanup_testdir
49 }
50
51 _touch()
52 {
53     # On IRIX: Too many symbolic links in path name traversal
54     # On Linux: Too many levels of symbolic links
55     touch $@ 2>&1 | grep -q 'Too many.*symbolic links'
56     if [ $? -eq 0 ]; then
57         echo "ELOOP returned.  Good."
58     else
59         echo "No ELOOP?  Unexpected!"
60     fi
61 }
62
63 # get standard environment, filters and checks
64 . ./common.rc
65 . ./common.filter
66
67 # real QA test starts here
68 _supported_fs generic
69
70 # IRIX UDF does not support symlinks
71 if [ $FSTYP == 'udf' ]; then
72     _supported_os Linux
73 else
74     _supported_os Linux IRIX
75 fi
76
77 _setup_testdir
78
79 cd $testdir
80
81 o=empty_file
82 touch $o
83 for f in symlink_{0,1,2,3,4}{0,1,2,3,4,5,6,7,8,9}
84 do
85     ln -s $o $f
86     o=$f
87 done
88
89 ln -s symlink_self symlink_self
90
91 echo "*** touch deep symlinks"
92 echo ""
93 _touch symlink_{0,1,2,3,4}{0,1,2,3,4,5,6,7,8,9}
94 echo ""
95 echo "*** touch recusive symlinks"
96 echo ""
97 _touch symlink_self
98
99 exit