mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-27 02:23:35 +08:00
add test that would fail on NetBSD before the last change
This commit is contained in:
parent
33ba435db5
commit
07584e33ec
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user