]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Ensure that each `-d'-specified directory is created.
authorJim Meyering <jim@meyering.net>
Wed, 15 Jun 2005 09:04:21 +0000 (09:04 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 15 Jun 2005 09:04:21 +0000 (09:04 +0000)
tests/install/basic-1

index 66a8e64e1fdc8c8570dc6583c7bb1ed4546cfac8..07d10debdf6c03cf0f14dd497b5f9b65f7613cae 100755 (executable)
@@ -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