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 |
|
---|
6 | if test "$VERBOSE" = yes; then
|
---|
7 | set -x
|
---|
8 | du --version
|
---|
9 | fi
|
---|
10 |
|
---|
11 | . $srcdir/../envvar-check
|
---|
12 | . $srcdir/../hardlink-check #bird
|
---|
13 | . $srcdir/../lang-default
|
---|
14 |
|
---|
15 | pwd=`pwd`
|
---|
16 | t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
|
---|
17 | trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0
|
---|
18 | trap '(exit $?); exit $?' 1 2 13 15
|
---|
19 |
|
---|
20 | framework_failure=0
|
---|
21 | mkdir -p $tmp || framework_failure=1
|
---|
22 | cd $tmp || framework_failure=1
|
---|
23 |
|
---|
24 | mkdir -p dir/sub
|
---|
25 | ( cd dir && { echo non-empty > f1; ln f1 f2; echo non-empty > sub/F; } )
|
---|
26 |
|
---|
27 | if test $framework_failure = 1; then
|
---|
28 | echo "$0: failure in testing framework" 1>&2
|
---|
29 | (exit 1); exit 1
|
---|
30 | fi
|
---|
31 |
|
---|
32 | fail=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.
|
---|
38 | du -a --exclude=sub dir \
|
---|
39 | | sed 's/^[0-9][0-9]* //' | sed 's/f[12]/f_/' > out || fail=1
|
---|
40 | echo === >> out
|
---|
41 | du -a --exclude=sub --count-links dir \
|
---|
42 | | sed 's/^[0-9][0-9]* //' | sort -r >> out || fail=1
|
---|
43 | cat <<\EOF > exp
|
---|
44 | dir/f_
|
---|
45 | dir
|
---|
46 | ===
|
---|
47 | dir/f2
|
---|
48 | dir/f1
|
---|
49 | dir
|
---|
50 | EOF
|
---|
51 |
|
---|
52 | cmp out exp || fail=1
|
---|
53 | test $fail = 1 && diff -u out exp 2> /dev/null
|
---|
54 |
|
---|
55 | (exit $fail); exit $fail
|
---|