tests: exclude some tests when running on NFS
[coreutils.git] / tests / du / basic
blob6d3eeb1e72dbb1d8f01fe634bb8a04b74c771c5f
1 #!/bin/sh
2 # Compare actual numbers from du, assuming block size matches mine.
4 # Copyright (C) 2003, 2006-2010 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 if test "$VERBOSE" = yes; then
20 set -x
21 du --version
24 . $srcdir/test-lib.sh
26 mkdir -p a/b d d/sub || framework_failure
28 # Ensure that these files contain more than 64 bytes, so that we don't
29 # immediately disqualify file systems (e.g., NetApp) on which smaller
30 # files take up zero disk blocks.
31 printf '%*s' 257 make-sure-the-file-is-non-empty > a/b/F || framework_failure
32 printf %4096s x > d/1
33 cp d/1 d/sub/2
36 B=`stat --format=%B a/b/F`
38 du --block-size=$B -a a > out || fail=1
39 echo === >> out
40 du --block-size=$B -a -S a >> out || fail=1
41 echo === >> out
42 du --block-size=$B -s a >> out || fail=1
44 f=`stat --format=%b a/b/F`
45 b=`stat --format=%b a/b`
46 a=`stat --format=%b a`
47 bf=`expr $b + $f`
48 tot=`expr $bf + $a`
50 cat <<EOF | sed 's/ *#.*//' > exp
51 $f a/b/F
52 $bf a/b
53 $tot a
54 ===
55 $f a/b/F # size of file, a/b/F
56 $bf a/b # size of dir entry, a/b, + size of file, a/b/F
57 $a a # size of dir entry, a
58 ===
59 $tot a
60 EOF
62 compare out exp || fail=1
64 # Perform this test only if "." is on a local file system.
65 # Otherwise, it would fail e.g., on an NFS-mounted Solaris ZFS file system.
66 if is_local_dir_ .; then
67 rm -f out exp
68 du --block-size=$B -a d | sort -r -k2,2 > out || fail=1
69 echo === >> out
70 du --block-size=$B -S d | sort -r -k2,2 >> out || fail=1
72 t2=`stat --format=%b d/sub/2`
73 ts=`stat --format=%b d/sub`
74 t1=`stat --format=%b d/1`
75 td=`stat --format=%b d`
76 tot=`expr $t1 + $t2 + $ts + $td`
77 d1=`expr $td + $t1`
78 s2=`expr $ts + $t2`
80 cat <<EOF | sed 's/ *#.*//' > exp
81 $t2 d/sub/2
82 $s2 d/sub
83 $t1 d/1
84 $tot d
85 ===
86 $s2 d/sub
87 $d1 d # d + d/1; don't count the dir. entry for d/sub
88 EOF
90 compare out exp || fail=1
93 Exit $fail