tests: adds test-regression-nginx to the makefile

This patch adds the nginx regression test entry to project makefile.
This commit is contained in:
Felipe Zimmerle 2014-01-03 09:26:30 -08:00
parent 96ad8267ee
commit 450d621ca9
2 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,10 @@ test: check
test-regression:
(cd tests && $(MAKE) test-regression)
test-regression-nginx:
(cd tests && $(MAKE) test-regression-nginx)
cppcheck:
cppcheck . --enable=all --force 2>&1 | sed 's/^/warning: /g' 1>&2;

View File

@ -60,4 +60,7 @@ test: check
test-regression: run-regression-tests.pl
$(PERL) run-regression-tests.pl
test-regression-nginx: run-regression-tests-nginx.pl
$(PERL) run-regression-tests-nginx.pl
.PHONY: test test-regression