* tests/truncate/multiple-files.sh: Check that nothing is printed to
standard output and that standard error has the correct error.
. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
print_ver_ truncate
+getlimits_
-returns_ 1 truncate -s0 a . b || fail=1
+returns_ 1 truncate -s0 a . b > out 2> err || fail=1
test -f a || fail=1
test -f b || fail=1
+compare /dev/null out || fail=1
+cat <<EOF > exp-err || framework_failure_
+truncate: cannot open '.' for writing: $EISDIR
+EOF
+compare exp-err err || fail=1
+
Exit $fail