Create the directories b and c just before they are needed instead of up front. For t5003 it turns out we don't need them at all. For t5000 it makes the coming modifications easier. Signed-off-by: René Scharfe <rene.scharfe@xxxxxxxxxxxxxx> --- t/t5000-tar-tree.sh | 6 +++--- t/t5003-archive-zip.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index 68b5698..41cd609 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -32,7 +32,7 @@ SUBSTFORMAT=%H%n test_expect_success \ 'populate workdir' \ - 'mkdir a b c && + 'mkdir a && echo simple textfile >a/a && mkdir a/bin && cp /bin/sh a/bin && @@ -126,7 +126,7 @@ test_expect_success \ test_expect_success \ 'extract tar archive' \ - '(cd b && "$TAR" xf -) <b.tar' + '(mkdir b && cd b && "$TAR" xf -) <b.tar' test_expect_success \ 'validate filenames' \ @@ -143,7 +143,7 @@ test_expect_success \ test_expect_success \ 'extract tar archive with prefix' \ - '(cd c && "$TAR" xf -) <c.tar' + '(mkdir c && cd c && "$TAR" xf -) <c.tar' test_expect_success \ 'validate filenames with prefix' \ diff --git a/t/t5003-archive-zip.sh b/t/t5003-archive-zip.sh index 4e7b05d..c72f71e 100755 --- a/t/t5003-archive-zip.sh +++ b/t/t5003-archive-zip.sh @@ -37,7 +37,7 @@ check_zip() { test_expect_success \ 'populate workdir' \ - 'mkdir a b c && + 'mkdir a && echo simple textfile >a/a && mkdir a/bin && cp /bin/sh a/bin && -- 1.8.2.3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html