source: trunk/coreutils/tests/du/hard-link@ 2568

Last change on this file since 2568 was 2568, checked in by bird, 19 years ago

skip hardlink testcases if hardlinks aren't supported.

File size: 1.4 KB
Line 
1#!/bin/sh
2# Ensure that hard-linked files are counted (and listed) only once.
3# Likewise for excluded directories.
4# Ensure that hard links _are_ listed twice when using --count-links.
5
6if test "$VERBOSE" = yes; then
7 set -x
8 du --version
9fi
10
11. $srcdir/../envvar-check
12. $srcdir/../hardlink-check #bird
13. $srcdir/../lang-default
14
15pwd=`pwd`
16t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
17trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0
18trap '(exit $?); exit $?' 1 2 13 15
19
20framework_failure=0
21mkdir -p $tmp || framework_failure=1
22cd $tmp || framework_failure=1
23
24mkdir -p dir/sub
25( cd dir && { echo non-empty > f1; ln f1 f2; echo non-empty > sub/F; } )
26
27if test $framework_failure = 1; then
28 echo "$0: failure in testing framework" 1>&2
29 (exit 1); exit 1
30fi
31
32fail=0
33
34# Note that for this first test, we transform f1 or f2
35# (whichever name we find first) to f_. That is necessary because,
36# depending on the type of file system, du could encounter either of those
37# two hard-linked files first, thus listing that one and not the other.
38du -a --exclude=sub dir \
39 | sed 's/^[0-9][0-9]* //' | sed 's/f[12]/f_/' > out || fail=1
40echo === >> out
41du -a --exclude=sub --count-links dir \
42 | sed 's/^[0-9][0-9]* //' | sort -r >> out || fail=1
43cat <<\EOF > exp
44dir/f_
45dir
46===
47dir/f2
48dir/f1
49dir
50EOF
51
52cmp out exp || fail=1
53test $fail = 1 && diff -u out exp 2> /dev/null
54
55(exit $fail); exit $fail
Note: See TracBrowser for help on using the repository browser.