You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lang/crystal/files/crystal-0.27.0-extra-spec-f...

12 lines
493 B

Allow injecting additional arguments to test suite.
Useful to be able to run small subset of individual
test suite:
make spec EXTRA_SPEC_FLAGS='-e parse_set_cookie'
--- a/Makefile
+++ b/Makefile
@@ -31 +31 @@ override FLAGS += $(if $(release),--release )$(if $(stats),--stats )$(if $(progr
-SPEC_FLAGS := $(if $(verbose),-v )$(if $(junit_output),--junit_output $(junit_output) )
+SPEC_FLAGS := $(if $(verbose),-v )$(if $(junit_output),--junit_output $(junit_output) )$(EXTRA_SPEC_FLAGS)