diff options
| author | Junio C Hamano <gitster@pobox.com> | 2022-09-21 15:27:02 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-09-21 15:27:02 -0700 |
| commit | 17df9d3849c6d089506c0fcfbf50c8fed6793a28 (patch) | |
| tree | 1d71e43e84afe1ba1f58811a3ea5426827080a66 | |
| parent | Merge branch 'vd/check-docs-fixes' (diff) | |
| parent | t/Makefile: remove 'test-results' on 'make clean' (diff) | |
| download | git-17df9d3849c6d089506c0fcfbf50c8fed6793a28.tar.gz git-17df9d3849c6d089506c0fcfbf50c8fed6793a28.zip | |
Merge branch 'sg/clean-test-results'
"make clean" stopped cleaning the test results directory as a side
effect of a topic that has nothing to do with "make clean", which
has been corrected.
* sg/clean-test-results:
t/Makefile: remove 'test-results' on 'make clean'
| -rw-r--r-- | contrib/subtree/t/Makefile | 1 | ||||
| -rw-r--r-- | t/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/contrib/subtree/t/Makefile b/contrib/subtree/t/Makefile index 3d278bb0ed..4655e0987b 100644 --- a/contrib/subtree/t/Makefile +++ b/contrib/subtree/t/Makefile @@ -51,6 +51,7 @@ clean-except-prove-cache: $(RM) -r valgrind/bin clean: clean-except-prove-cache + $(RM) -r '$(TEST_RESULTS_DIRECTORY_SQ)' $(RM) .prove test-lint: test-lint-duplicates test-lint-executable test-lint-shell-syntax diff --git a/t/Makefile b/t/Makefile index 3db48c0cb6..882782a519 100644 --- a/t/Makefile +++ b/t/Makefile @@ -73,6 +73,7 @@ clean-except-prove-cache: clean-chainlint $(RM) -r valgrind/bin clean: clean-except-prove-cache + $(RM) -r '$(TEST_RESULTS_DIRECTORY_SQ)' $(RM) .prove clean-chainlint: |
