From: Stefan Metzmacher Date: Mon, 23 Nov 2020 09:38:49 +0000 (+0100) Subject: Makefile: add support for 'make testonly' X-Git-Tag: tevent-0.11.0~1968 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e4714940211b10ae6574770f15b7c6ed95f5f59;p=thirdparty%2Fsamba.git Makefile: add support for 'make testonly' That skips any attempt to recompile before running the tests. Some times that's useful for debugging and we'll use it to split the build and test stages in autobuild and gitlab-ci later. Signed-off-by: Stefan Metzmacher Reviewed-by: Andreas Schneider --- diff --git a/Makefile b/Makefile index 0b7b0ae8866..7f5960d5191 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,9 @@ uninstall: test: $(WAF) test $(TEST_OPTIONS) +testonly: + $(WAF) testonly $(TEST_OPTIONS) + perftest: $(WAF) test --perf-test $(TEST_OPTIONS)