From 783183260d64e9d5a73b8f2cc69475b126dcebb0 Mon Sep 17 00:00:00 2001 From: Walkusz Date: Thu, 20 Jun 2024 16:33:30 +0200 Subject: coverage: Change --html-details to --html-nested (gcovr) --html-nested option is used to create a separate web page for each file and directory. Each of these web pages includes the contents of file with annotations that summarize code coverage. Signed-off-by: Ewelina Walkusz --- mesonbuild/scripts/coverage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/scripts/coverage.py') diff --git a/mesonbuild/scripts/coverage.py b/mesonbuild/scripts/coverage.py index bded052d4..17a4a10ae 100644 --- a/mesonbuild/scripts/coverage.py +++ b/mesonbuild/scripts/coverage.py @@ -161,7 +161,7 @@ def coverage(outputs: T.List[str], source_root: str, subproject_root: str, build os.mkdir(htmloutdir) subprocess.check_call(gcovr_base_cmd + gcovr_config + ['--html', - '--html-details', + '--html-nested', '--print-summary', '-o', os.path.join(htmloutdir, 'index.html'), ] + gcov_exe_args) -- cgit v1.2.3