Skip to content

Commit 450d621

Browse files
author
Felipe Zimmerle
committed
tests: adds test-regression-nginx to the makefile
This patch adds the nginx regression test entry to project makefile.
1 parent 96ad826 commit 450d621

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Makefile.am

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ test: check
3535
test-regression:
3636
(cd tests && $(MAKE) test-regression)
3737

38+
test-regression-nginx:
39+
(cd tests && $(MAKE) test-regression-nginx)
40+
41+
3842
cppcheck:
3943
cppcheck . --enable=all --force 2>&1 | sed 's/^/warning: /g' 1>&2;
4044

tests/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,7 @@ test: check
6060
test-regression: run-regression-tests.pl
6161
$(PERL) run-regression-tests.pl
6262

63+
test-regression-nginx: run-regression-tests-nginx.pl
64+
$(PERL) run-regression-tests-nginx.pl
65+
6366
.PHONY: test test-regression

0 commit comments

Comments
 (0)