diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-11 13:06:02 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-11 13:06:02 -0700 |
commit | f3930e4389937eccdcaa204b134010e3c34463a4 (patch) | |
tree | 149e1563ad9b27c2309b6e00fff656a9779ad729 /t/t0000-basic.sh | |
parent | Merge branch 'af/rebase-i-merge-options' (diff) | |
parent | t0000: do not use export X=Y (diff) | |
download | tgif-f3930e4389937eccdcaa204b134010e3c34463a4.tar.xz |
Merge branch 'tr/test-v-and-v-subtest-only'
Finishing touches to a topic that is already in master for the
upcoming release.
* tr/test-v-and-v-subtest-only:
t0000: do not use export X=Y
Diffstat (limited to 't/t0000-basic.sh')
-rwxr-xr-x | t/t0000-basic.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh index 5c32288380..10be52beed 100755 --- a/t/t0000-basic.sh +++ b/t/t0000-basic.sh @@ -53,7 +53,8 @@ run_sub_test_lib_test () { # Pretend we're a test harness. This prevents # test-lib from writing the counts to a file that will # later be summarized, showing spurious "failed" tests - export HARNESS_ACTIVE=t && + HARNESS_ACTIVE=t && + export HARNESS_ACTIVE && cd "$name" && cat >"$name.sh" <<-EOF && #!$SHELL_PATH |