1#!/bin/sh
2# Make sure touch can operate on a directory.
3# This was broken in the 4.0[efg] test releases.
4
5. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
6print_ver_ touch
7
8touch . || fail=1
9Exit $fail
10