diff --git a/Makefile.am b/Makefile.am index 8c49bac6..3a0e59ba 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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; diff --git a/tests/Makefile.am b/tests/Makefile.am index 101a4882..74f8fe0d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -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