add test that would fail on NetBSD before the last change

This commit is contained in:
Jim Meyering 2000-12-02 14:02:34 +00:00
parent 33ba435db5
commit 07584e33ec

View File

@ -1,5 +1,6 @@
#!/bin/sh
# make sure --parents works with a trailing slash
# Ensure that mkdir works with arguments specified with and without
# a trailing slash.
if test "$VERBOSE" = yes; then
set -x
@ -25,4 +26,8 @@ fail=0
mkdir -p dir/ || fail=1
test -d dir || fail=1
# This failed on NetBSD for fileutils-4.0.33.
mkdir d2/ || fail=1
test -d d2 || fail=1
(exit $fail); exit