summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2006-08-08 02:46:38 -0400
committerBehdad Esfahbod <behdad@behdad.org>2006-08-08 02:46:38 -0400
commit56791ab31d484452cd1ddefd653590095d9f6191 (patch)
treea8403df02abc890b40f0a00f3ca87cdac0c12502 /test
parentcaba7f6bda9ba7c1a0738f3b34996c50bde60697 (diff)
downloadcairo-56791ab31d484452cd1ddefd653590095d9f6191.tar.gz
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.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am11
1 files changed, 6 insertions, 5 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 333455692..d2feb6d89 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -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