1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

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
This commit is contained in:
Stefan Metzmacher 2010-07-10 09:10:52 +02:00
parent c0aa55d550
commit c48ff4c6a9

View File

@ -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