Adjust not to hard-code the expected
[platform/upstream/coreutils.git] / tests / du / long-sloop
1 #!/bin/sh
2 # Use du to exercise a corner of fts's FTS_LOGICAL code.
3 # Show that du fails with ELOOP (Too many levels of symbolic links)
4 # when it encounters that condition.
5
6 if test "$VERBOSE" = yes; then
7   set -x
8   du --version
9 fi
10
11 . $srcdir/../lang-default
12
13 pwd=`pwd`
14 t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
15 trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0
16 trap '(exit $?); exit $?' 1 2 13 15
17
18 framework_failure=0
19 mkdir -p $tmp || framework_failure=1
20 cd $tmp || framework_failure=1
21
22 # Create lots of directories, each containing a single symlink
23 # pointing at the next directory in the list.
24
25 # This number should be larger than the number of symlinks allowed in
26 # file name resolution, but not too large as a number of entries
27 # in a single directory.
28 n=400
29
30 dir_list=`seq $n`
31 mkdir $dir_list || framework_failure=1
32 for i in $dir_list; do
33   ip1=`expr $i + 1`
34   ln -s ../$ip1 $i/s || framework_failure=1
35 done
36 echo foo > $ip1
37
38 if test $framework_failure = 1; then
39   echo "$0: failure in testing framework" 1>&2
40   (exit 1); exit 1
41 fi
42
43 # If a system can handle this many symlinks in a file name,
44 # just skip this test.
45
46 # The following also serves to record in `err' the string
47 # corresponding to strerror (ELOOP).  This is necessary because while
48 # Linux/libc gives `Too many levels of symbolic links', Solaris
49 # renders it as `Number of symbolic links encountered during path
50 # name traversal exceeds MAXSYMLINKS'.
51
52 file=1`printf %${n}s ' '|sed 's, ,/s,g'`
53 cat $file > /dev/null 2> err && \
54   {
55     cat <<EOF >&2
56 $0: Your systems appears to be able to handle more than $n symlinks
57 in file name resolution, so skipping this test.
58 EOF
59     (exit 77); exit 77
60   }
61 too_many=`sed 's/.*: //' err`
62
63 fail=0
64
65 # With coreutils-5.93 there was no failure.
66 # With coreutils-5.94 we get a diagnostic like this:
67 # du: cannot access `1/s/s/s/.../s': Too many levels of symbolic links
68 du -L 1 > /dev/null 2> out1 && fail=1
69 sed "s, .1/s/s/s/[/s]*',," out1 > out || fail=1
70
71 echo "du: cannot access: $too_many" > exp || fail=1
72
73 cmp out exp || fail=1
74 test $fail = 1 && diff out exp 2> /dev/null
75
76 (exit $fail); exit $fail