From c48ff4c6a937924f16bc37251c74b753fbe1f5c1 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 10 Jul 2010 09:10:52 +0200 Subject: [PATCH] s4:buildtools: make it possible to use advanced test options via the make waf wrapper You can to do thinks like this now: make test TEST_OPTIONS="--valgrind-server" TESTS=wbinfo metze --- buildtools/scripts/Makefile.waf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf index 045d2410e2..8de7f217bd 100644 --- a/buildtools/scripts/Makefile.waf +++ b/buildtools/scripts/Makefile.waf @@ -12,13 +12,13 @@ uninstall: $(WAF) uninstall test: - $(WAF) test + $(WAF) test $(TEST_OPTIONS) testenv: - $(WAF) test --testenv + $(WAF) test --testenv $(TEST_OPTIONS) quicktest: - $(WAF) test --quick + $(WAF) test --quick $(TEST_OPTIONS) dist: $(WAF) dist -- 2.34.1