commit 3096da4ef4418dc57f3e0b1fb1f89dceb2ca426a from: Omar Polo date: Thu Oct 07 08:55:44 2021 UTC allow to run only a subset of the runtime tests with make TESTS='test_1 test_2 ...' regress now it's possible to run only that specified subset of tests. It's really useful during debugging :) commit - e4daebe44aedd66413f82319252a7e579133945d commit + 3096da4ef4418dc57f3e0b1fb1f89dceb2ca426a blob - 55a7540f0e5315b3817e6c0df79f4d66919c980c blob + 6af9942cf1a5f4b1a2829b0f6161f20636db6082 --- Makefile +++ Makefile @@ -1,3 +1,7 @@ +# tests to run as a port of the regression suite. Leave empty to run +# all. +TESTS= + .PHONY: all static clean regress install all: Makefile.local gmid TAGS compile_flags.txt @@ -29,7 +33,7 @@ clean: ${MAKE} -C regress clean regress: gmid - ${MAKE} -C regress all + ${MAKE} TESTS=${TESTS} -C regress all install: gmid mkdir -p ${DESTDIR}${BINDIR} blob - 5b2d29bc8b92dc961007b069dc0ceb317a5c6ecb blob + 2a12053dfbad863cdb47a0c184e55ca29bcbc6ed --- regress/Makefile +++ regress/Makefile @@ -1,3 +1,7 @@ +# tests to run as a port of the regression suite. Leave empty to run +# all. +TESTS= + include ../Makefile.local .PHONY: all data clean runtime @@ -5,7 +9,7 @@ include ../Makefile.local all: data gg puny-test fcgi-test ./puny-test ./iri_test - ./runtime + ./runtime ${TESTS} data: testdata iri_test cert.pem testca.pem valid.crt invalid.cert.pem