Skip to content

Commit b3e0c4e

Browse files
johnkeepinggitster
authored andcommitted
t/Makefile: don't define TEST_RESULTS_DIRECTORY recursively
Commit 54bb901 (t/Makefile: fix result handling with TEST_OUTPUT_DIRECTORY - 2013-04-26) incorrectly defined TEST_RESULTS_DIRECTORY relative to itself, when it should be relative to TEST_OUTPUT_DIRECTORY. Fix this. Signed-off-by: John Keeping <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2d14e13 commit b3e0c4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DEFAULT_TEST_TARGET ?= test
1616
TEST_LINT ?= test-lint-duplicates test-lint-executable
1717

1818
ifdef TEST_OUTPUT_DIRECTORY
19-
TEST_RESULTS_DIRECTORY = $(TEST_RESULTS_DIRECTORY)/test-results
19+
TEST_RESULTS_DIRECTORY = $(TEST_OUTPUT_DIRECTORY)/test-results
2020
else
2121
TEST_RESULTS_DIRECTORY = test-results
2222
endif

0 commit comments

Comments
 (0)