diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-11-09 13:08:37 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-11-10 14:24:21 +1100 |
commit | a04eac7aa2f5f9388cf92a8a79e0bd6938f8fd22 (patch) | |
tree | 983b65942739252e418c50db4c182e5f589cc5e4 /Makefile | |
parent | 58457e6cd23fc2661c464a2ab5b136ee6611b242 (diff) | |
download | samba-a04eac7aa2f5f9388cf92a8a79e0bd6938f8fd22.tar.gz samba-a04eac7aa2f5f9388cf92a8a79e0bd6938f8fd22.tar.bz2 samba-a04eac7aa2f5f9388cf92a8a79e0bd6938f8fd22.zip |
build: only run symbol checking if running all tests
this makes it much faster to run 1 test
Pair-Programmed-With: Amitay Isaacs <amitay@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -13,20 +13,20 @@ uninstall: $(WAF) uninstall test: - $(WAF) test --dup-symbol-check $(TEST_OPTIONS) + $(WAF) test $(TEST_OPTIONS) help: @echo NOTE: to run extended waf options use $(WAF_BINARY) or modify your PATH $(WAF) --help subunit-test: - $(WAF) test --dup-symbol-check --filtered-subunit $(TEST_OPTIONS) + $(WAF) test --filtered-subunit $(TEST_OPTIONS) testenv: - $(WAF) test --dup-symbol-check --testenv $(TEST_OPTIONS) + $(WAF) test --testenv $(TEST_OPTIONS) quicktest: - $(WAF) test --dup-symbol-check --quick $(TEST_OPTIONS) + $(WAF) test --quick $(TEST_OPTIONS) dist: touch .tmplock |