mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-03-18 19:05:18 +02:00
15 lines
241 B
Bash
Executable File
15 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
# Make sure touch can operate on a directory.
|
|
# This was broken in the 4.0[efg] test releases.
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
touch --version
|
|
fi
|
|
|
|
. $srcdir/test-lib.sh
|
|
|
|
fail=0
|
|
touch . || fail=1
|
|
(exit $fail); exit $fail
|