summaryrefslogtreecommitdiff
path: root/tests/du/two-args
blob: dbb60a9398165c51b80d54f5693d94e81f984d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
# make sure du d/1 d/2 works

if test "$VERBOSE" = yes; then
  set -x
  du --version
fi

tmp=du2-$$
trap 'status=$?; rm -rf $tmp && exit $status' 0
trap 'exit $?' 1 2 13 15

mkdir -p $tmp/1 $tmp/2

test -d $tmp || fail=1
du $tmp/1 $tmp/2

exit $fail