From: Jim Meyering Date: Wed, 15 Jun 2005 09:04:21 +0000 (+0000) Subject: Ensure that each `-d'-specified directory is created. X-Git-Tag: CPPI-1_12~594 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39b87363ae7741512b191a3d1b1c341e826fd7c2;p=thirdparty%2Fcoreutils.git Ensure that each `-d'-specified directory is created. --- diff --git a/tests/install/basic-1 b/tests/install/basic-1 index 66a8e64e1f..07d10debdf 100755 --- a/tests/install/basic-1 +++ b/tests/install/basic-1 @@ -64,5 +64,8 @@ test "$1" = -r-xr-xr-x || fail=1 ginstall -d . || fail=1 ginstall -d newdir || fail=1 ginstall -d newdir1 newdir2 newdir3 || fail=1 +test -d newdir1 || fail=1 +test -d newdir2 || fail=1 +test -d newdir3 || fail=1 (exit $fail); exit $fail