From: Stefan Metzmacher Date: Wed, 30 Dec 2020 11:11:55 +0000 (+0100) Subject: script/autobuild.py: skip lcov step for samba-fips X-Git-Tag: tevent-0.11.0~1166 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3189807278b0cb10007831ad84fa55c2cb14b125;p=thirdparty%2Fsamba.git script/autobuild.py: skip lcov step for samba-fips This doesn't really work and only generates an empty samba-fips.info file. Someone familiar with gcov/lcov should look at this and fix it. Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- diff --git a/script/autobuild.py b/script/autobuild.py index 5f0a77f3590..25e6291d7e5 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -573,7 +573,7 @@ tasks = { "sequence": [ ("random-sleep", random_sleep(1, 1)), ("test", make_test(include_envs=["ad_dc_fips", "ad_member_fips"])), - ("lcov", LCOV_CMD), + # TODO: This seems to generate only an empty samba-fips.info ("lcov", LCOV_CMD), ("check-clean-tree", CLEAN_SOURCE_TREE_CMD), ], },