summaryrefslogtreecommitdiff
path: root/buildtools/scripts
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-07-10 09:10:52 +0200
committerStefan Metzmacher <metze@samba.org>2010-07-10 09:35:00 +0200
commitc48ff4c6a937924f16bc37251c74b753fbe1f5c1 (patch)
treed24673bffba650b10874a9abd543eb6936923f9d /buildtools/scripts
parentc0aa55d55033e0dfb0ee0933b137dba38de2fd16 (diff)
downloadsamba-c48ff4c6a937924f16bc37251c74b753fbe1f5c1.tar.gz
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
Diffstat (limited to 'buildtools/scripts')
-rw-r--r--buildtools/scripts/Makefile.waf6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf
index 045d2410e20..8de7f217bdb 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