diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2013-05-20 11:58:25 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-05-20 15:31:45 -0700 |
commit | 1355241bf58b325ec9bedc2768d28dd20355c50e (patch) | |
tree | 52e48a5d9186fd9a6f949776f89d18f46d9a026d /t/t5000-tar-tree.sh | |
parent | t5000: integrate export-subst tests into regular tests (diff) | |
download | tgif-1355241bf58b325ec9bedc2768d28dd20355c50e.tar.xz |
t5000, t5003: create directories for extracted files lazily
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@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5000-tar-tree.sh')
-rwxr-xr-x | t/t5000-tar-tree.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index 68b5698d29..41cd6094ac 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' \ |