From: Vsevolod Stakhov Date: Sun, 28 Jun 2020 19:56:44 +0000 (+0100) Subject: [Test] Try to fix gcov invocation with new toolchain X-Git-Tag: 2.6~284 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=23ef4989ebaf960bfc9c71add9fd2c412e4ceca2;p=rspamd.git [Test] Try to fix gcov invocation with new toolchain --- diff --git a/test/tools/gcov_coveralls.py b/test/tools/gcov_coveralls.py index 71aa48b7b..ee441853f 100755 --- a/test/tools/gcov_coveralls.py +++ b/test/tools/gcov_coveralls.py @@ -46,7 +46,7 @@ def warn(*args, **kwargs): def parse_gcov_file(gcov_file): - """Parses the content of .gcov file written by gcov --intermediate-format + """Parses the content of .gcov file written by gcov -i Returns: str: Source file name @@ -72,13 +72,13 @@ def run_gcov(filename, coverage, args): * delete .gcov files """ if args.verbose: - warn("calling:", 'gcov', '--intermediate-format', filename) + warn("calling:", 'gcov', '-i', filename) stdout = None else: # gcov is noisy and don't have quit flag so redirect stdout to /dev/null stdout = subprocess.DEVNULL - subprocess.check_call(['gcov', '--intermediate-format', filename], stdout=stdout) + subprocess.check_call(['gcov', '-i', filename], stdout=stdout) for gcov_file in glob('*.gcov'): if args.verbose: