aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/coverage.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-05-14 11:55:02 +0300
committerGitHub <noreply@github.com>2017-05-14 11:55:02 +0300
commit18b11489cf43fcc251d1cc04e087d8cea191a258 (patch)
tree239570ce5e7493905cc04563250a3a091a45222d /mesonbuild/scripts/coverage.py
parent9b5df6e442672f8e7d6ead666a766234ccf41277 (diff)
parent95f8cb93b3d0ce99ff99146517625e0d79e848ad (diff)
downloadmeson-18b11489cf43fcc251d1cc04e087d8cea191a258.zip
meson-18b11489cf43fcc251d1cc04e087d8cea191a258.tar.gz
meson-18b11489cf43fcc251d1cc04e087d8cea191a258.tar.bz2
Merge pull request #1775 from mesonbuild/covupdate
Better coverage report
Diffstat (limited to 'mesonbuild/scripts/coverage.py')
-rw-r--r--mesonbuild/scripts/coverage.py79
1 files changed, 79 insertions, 0 deletions
diff --git a/mesonbuild/scripts/coverage.py b/mesonbuild/scripts/coverage.py
new file mode 100644
index 0000000..441ec0c
--- /dev/null
+++ b/mesonbuild/scripts/coverage.py
@@ -0,0 +1,79 @@
+# Copyright 2017 The Meson development team
+
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+
+# http://www.apache.org/licenses/LICENSE-2.0
+
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from mesonbuild import environment
+
+import sys, os, subprocess
+
+def remove_dir_from_trace(lcov_command, covfile, dirname):
+ tmpfile = covfile + '.tmp'
+ subprocess.check_call([lcov_command, '--remove', covfile, dirname, '-o', tmpfile])
+ os.replace(tmpfile, covfile)
+
+def coverage(source_root, build_root, log_dir):
+ (gcovr_exe, lcov_exe, genhtml_exe) = environment.find_coverage_tools()
+ if gcovr_exe:
+ subprocess.check_call([gcovr_exe,
+ '-x',
+ '-r', source_root,
+ '-o', os.path.join(log_dir, 'coverage.xml'),
+ ])
+ subprocess.check_call([gcovr_exe,
+ '-r', source_root,
+ '-o', os.path.join(log_dir, 'coverage.txt'),
+ ])
+ if lcov_exe and genhtml_exe:
+ htmloutdir = os.path.join(log_dir, 'coveragereport')
+ covinfo = os.path.join(log_dir, 'coverage.info')
+ initial_tracefile = covinfo + '.initial'
+ run_tracefile = covinfo + '.run'
+ subprocess.check_call([lcov_exe,
+ '--directory', build_root,
+ '--capture',
+ '--initial',
+ '--output-file',
+ initial_tracefile])
+ subprocess.check_call([lcov_exe,
+ '--directory', build_root,
+ '--capture',
+ '--output-file', run_tracefile,
+ '--no-checksum',
+ '--rc', 'lcov_branch_coverage=1',
+ ])
+ # Join initial and test results.
+ subprocess.check_call([lcov_exe,
+ '-a', initial_tracefile,
+ '-a', run_tracefile,
+ '-o', covinfo])
+ remove_dir_from_trace(lcov_exe, covinfo, '/usr/include/*')
+ remove_dir_from_trace(lcov_exe, covinfo, '/usr/local/include/*')
+ subprocess.check_call([genhtml_exe,
+ '--prefix', build_root,
+ '--output-directory', htmloutdir,
+ '--title', 'Code coverage',
+ '--legend',
+ '--show-details',
+ '--branch-coverage',
+ covinfo])
+ return 0
+
+def run(args):
+ if not os.path.isfile('build.ninja'):
+ print('Coverage currently only works with the Ninja backend.')
+ return 1
+ source_root, build_root, log_dir = args[:]
+ return coverage(source_root, build_root, log_dir)
+
+if __name__ == '__main__':
+ sys.exit(run(sys.argv[1:]))