* src/dd.c (flags): noatime and nofollow now depend on
[coreutils/bo.git] / src / du-tests
blob21b586a0cd6e10d36f27af66a400bf675080cc3a
1 #!/bin/bash
3 # Copyright (C) 2003 Free Software Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software Foundation,
17 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 cat - <<\EOF > /dev/null
20 Invoke e.g., like this
21 DU1=du-4.5.2 DU2=du ./du-tests
22 EOF
24 test -x "$DU1" || { echo DU1 envvar not set; exit 1; }
25 test -x "$DU2" || { echo DU2 envvar not set; exit 1; }
26 # Expects $DU1 and $DU2 to be the binaries to compare.
27 d1=$(mktemp -d)
28 cp -a $DU1 $d1/du
29 d2=$(mktemp -d)
30 cp -a $DU2 $d2/du
32 for args in \
33 '-Sa .' \
34 '-Sa ../..' \
35 '-Sa a' \
36 '-Sa /tmp /t' \
37 '-Sa /tmp' \
38 '/tmp /t' \
39 '-a /tmp /t' \
40 '-a a' \
41 '-ca .' \
42 '-ca ..' \
43 '-ca ../..' \
44 '-ca /tmp /t' \
45 '-ca /tmp' \
46 '-ca a' \
47 ; do
48 echo Args: $args ======================
49 diff -u --label=$DU1 --label=$DU2 \
50 <(PATH=$d1 du $args 2>&1) <(PATH=$d2 du $args 2>&1)
51 done
52 rm -rf $d1 $d2