mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-23 19:10:44 +02:00
Make "make html" not trigger test reruns
"make index.html" can still be used to force up-to-date test results, causing test reruns if necessary.
This commit is contained in:
parent
caba7f6bda
commit
56791ab31d
1 changed files with 6 additions and 5 deletions
|
|
@ -509,14 +509,15 @@ retest:
|
|||
$(MAKE) TESTS="$$TESTS" check; \
|
||||
$(MAKE) TESTS="$$TESTS" html
|
||||
|
||||
# Make index.html
|
||||
html: index.html
|
||||
# Make index.html with no dependency tracking.
|
||||
html:
|
||||
@echo Creating index.html
|
||||
@perl $(srcdir)/make-html.pl $(TESTS:=.log) > index.html
|
||||
|
||||
# Make index.html containing only the failed tests.
|
||||
# Make index.html with no dependency tracking, containing only the failed tests.
|
||||
rehtml:
|
||||
@$(MAKE) TESTS="$(FAILED_TESTS)" html
|
||||
|
||||
|
||||
$(TESTS): $(SUPPORT_PROGS)
|
||||
|
||||
%.log: %
|
||||
|
|
@ -529,6 +530,6 @@ $(NOLOG_TESTS_LOG):
|
|||
|
||||
index.html: $(srcdir)/make-html.pl $(TESTS:=.log)
|
||||
@echo Creating index.html
|
||||
@perl $^ > index.html
|
||||
@perl $^ > $@
|
||||
|
||||
.PHONY: check-valgrind test recheck retest html rehtml
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue