diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2010-08-14 11:37:05 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-18 12:43:23 -0700 |
commit | 617344d77bf2a11b507fb74160b14e5b7476f8ad (patch) | |
tree | 2b8ade1173e902e4b372f50af70779575232fbee /t/Makefile | |
parent | d0736f7b81ac2fcb763279b3bf3e90faa3fb6609 (diff) | |
download | git-617344d77bf2a11b507fb74160b14e5b7476f8ad.tar.gz |
t/Makefile: Create test-results dir for smoke target
Change the smoke target to create a test-results directory. This was
done implicitly by the test-lib before my "test-lib: Don't write
test-results when HARNESS_ACTIVE" patch, but after that smoking from
the pu branch hasn't worked.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/Makefile')
-rw-r--r-- | t/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/Makefile b/t/Makefile index b81fb91b52..d9c67f5609 100644 --- a/t/Makefile +++ b/t/Makefile @@ -58,7 +58,7 @@ uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo unknown') test-results: mkdir -p test-results -test-results/git-smoke.tar.gz: +test-results/git-smoke.tar.gz: test-results $(PERL_PATH) ./harness \ --archive="test-results/git-smoke.tar.gz" \ $(T) |