OSDN Git Service

t5701: do not get stuck in empty-push/
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Mon, 27 Apr 2009 22:12:31 +0000 (00:12 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 27 Apr 2009 23:33:53 +0000 (16:33 -0700)
A test might happen to be the last one in the script, but other people
later may want to add more tests after your test is done.

Do not surprise them by going in a subdirectory to run a part of your test
and never coming out of it.  This fixes a162e78 in that respect.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5701-clone-local.sh

index f26b511..19b5c0d 100755 (executable)
@@ -138,8 +138,8 @@ test_expect_success 'clone empty repository, and then push should not segfault.'
        mkdir empty &&
        (cd empty && git init) &&
        git clone empty empty-clone &&
-       cd empty-clone &&
-       test_must_fail git push
+       (cd empty-clone &&
+       test_must_fail git push)
 '
 
 test_done