diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-04-07 00:32:24 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-04-07 00:32:24 +0200 |
commit | 027adf88eaf8c3a7375da7c0f9c0397db46668e6 (patch) | |
tree | 27b4305e772ce2864aff5385340541271a96fecd | |
parent | c349aa3619efde5e00fd0d05f0670a7b6c2f3327 (diff) | |
download | samba-027adf88eaf8c3a7375da7c0f9c0397db46668e6.tar.gz |
Support 'make test TESTS=foo' again.
-rw-r--r-- | buildtools/scripts/Makefile.waf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf index e17ae217df5..4fb9fd2dfec 100644 --- a/buildtools/scripts/Makefile.waf +++ b/buildtools/scripts/Makefile.waf @@ -17,10 +17,10 @@ uninstall: $(WAF) uninstall test: - $(WAF) test + $(WAF) test $(if $(TESTS),--tests="$(TESTS)") quicktest: - $(WAF) test --quick + $(WAF) test --quick $(if $(TESTS),--tests="$(TESTS)") clean: $(WAF) clean |