diff options
author | Omar Polo <op@omarpolo.com> | 2021-10-07 08:55:44 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-10-07 08:55:44 +0000 |
commit | 3096da4ef4418dc57f3e0b1fb1f89dceb2ca426a (patch) | |
tree | 5c8692366461c03967a6faab311f44be3f42af11 /regress | |
parent | e4daebe44aedd66413f82319252a7e579133945d (diff) |
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 :)
Diffstat (limited to 'regress')
-rw-r--r-- | regress/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/regress/Makefile b/regress/Makefile index 5b2d29b..2a12053 100644 --- a/regress/Makefile +++ b/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 |