diff options
author | Andreas Schneider <asn@samba.org> | 2015-09-15 16:20:48 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2015-09-15 21:57:50 +0200 |
commit | 4276ec7a6c2379a0b906fab8e1dc9c080b3534bc (patch) | |
tree | ceb79cd0a8b4de46f39b812c30926b57f5500251 /Makefile | |
parent | f54b2f77583672bc560fd5b03ddb58943b84f089 (diff) | |
download | samba-4276ec7a6c2379a0b906fab8e1dc9c080b3534bc.tar.gz |
Makefile: Add option to list all tests
This allows you to run 'make testlist' to get a complete list of all our
tests available. You can limit it using 'make testlist TESTS=spoolss' to
only show spoolss tests for example.
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Autobuild-User(master): Michael Adam <obnox@samba.org>
Autobuild-Date(master): Tue Sep 15 21:57:50 CEST 2015 on sn-devel-104
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -35,6 +35,9 @@ quicktest: randomized-test: $(WAF) test --random-order $(TEST_OPTIONS) +testlist: + $(WAF) test --list $(TEST_OPTIONS) + dist: touch .tmplock WAFLOCK=.tmplock $(WAF) dist |