We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3501b89 + 60f26f6 commit 7903e66Copy full SHA for 7903e66
t/Makefile
@@ -28,17 +28,19 @@ test: pre-clean $(TEST_LINT)
28
29
prove: pre-clean $(TEST_LINT)
30
@echo "*** prove ***"; GIT_CONFIG=.git/config $(PROVE) --exec '$(SHELL_PATH_SQ)' $(GIT_PROVE_OPTS) $(T) :: $(GIT_TEST_OPTS)
31
- $(MAKE) clean
+ $(MAKE) clean-except-prove-cache
32
33
$(T):
34
@echo "*** $@ ***"; GIT_CONFIG=.git/config '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
35
36
pre-clean:
37
$(RM) -r test-results
38
39
-clean:
+clean-except-prove-cache:
40
$(RM) -r 'trash directory'.* test-results
41
$(RM) -r valgrind/bin
42
+
43
+clean: clean-except-prove-cache
44
$(RM) .prove
45
46
test-lint: test-lint-duplicates test-lint-executable
0 commit comments