diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-07-10 09:10:52 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-07-10 09:35:00 +0200 |
commit | c48ff4c6a937924f16bc37251c74b753fbe1f5c1 (patch) | |
tree | d24673bffba650b10874a9abd543eb6936923f9d /buildtools | |
parent | c0aa55d55033e0dfb0ee0933b137dba38de2fd16 (diff) | |
download | samba-c48ff4c6a937924f16bc37251c74b753fbe1f5c1.tar.gz samba-c48ff4c6a937924f16bc37251c74b753fbe1f5c1.tar.bz2 samba-c48ff4c6a937924f16bc37251c74b753fbe1f5c1.zip |
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')
-rw-r--r-- | buildtools/scripts/Makefile.waf | 6 |
1 files 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 |