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

script/autobuild.py: add --enable-coverage option

Signed-off-by: Joe Guo <joeg@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joe Guo 2019-05-04 02:32:40 +12:00 committed by Andrew Bartlett
parent 332f19c7f2
commit 87ea55e436

View File

@ -86,6 +86,9 @@ parser.add_option("", "--attach-logs", help="Attach logs to mails sent on succes
default=False, action="store_true")
parser.add_option("", "--restrict-tests", help="run as make test with this TESTS= regex",
default='')
parser.add_option("--enable-coverage", dest='enable_coverage',
action="store_const", const='--enable-coverage', default='',
help="Add --enable-coverage option while configure")
(options, args) = parser.parse_args()