From: Johannes Sixt Date: Tue, 20 Sep 2016 06:16:11 +0000 (+0200) Subject: t3700-add: create subdirectory gently X-Git-Tag: v2.10.1~5^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b07ad46432aa4fd80e8ebbcc48d38ec94ae20b01;p=thirdparty%2Fgit.git t3700-add: create subdirectory gently The subdirectory 'sub' is created early in the test file. Later, a test case removes it during its clean-up actions. However, this test case is protected by POSIXPERM. Consequently, 'sub' remains when the POSIXPERM prerequisite is not satisfied. Later, a recently introduced test case creates 'sub' again. Use -p with mkdir so that it does not fail if 'sub' already exists. Signed-off-by: Johannes Sixt Signed-off-by: Junio C Hamano --- diff --git a/t/t3700-add.sh b/t/t3700-add.sh index 0a962a60f2..16ab2da8a2 100755 --- a/t/t3700-add.sh +++ b/t/t3700-add.sh @@ -380,7 +380,7 @@ test_expect_success 'no file status change if no pathspec is given' ' ' test_expect_success 'no file status change if no pathspec is given in subdir' ' - mkdir sub && + mkdir -p sub && ( cd sub && >sub-foo1 &&