Searched +full:- +full:- +full:cov +full:- +full:report (Results 1 – 2 of 2) sorted by relevance
42 To report the coverage for the particular test application set :kconfig:option:`CONFIG_COVERAGE`.47 These steps will produce an HTML coverage report for a single application.51 .. zephyr-app-commands::53 :gen-args: -DCONFIG_COVERAGE=y -DCONFIG_COVERAGE_DUMP=y58 the emulator with :kbd:`Ctrl-A X` for this to complete after the coverage dump61 .. code-block:: console63 $ ninja -Cbuild run | tee log.log67 .. code-block:: console69 $ ninja -Cbuild run | tee log.log74 .. code-block:: console[all …]
3 # Copyright (c) 2018-2025 Intel Corporation4 # SPDX-License-Identifier: Apache-2.076 hex_dump = sp[1][:-1]104 # Iteratively call gcov-tool (not gcov) to merge the files105 merge_tool = self.gcov_tool + '-tool'106 for d1, d2 in zip(dirs[:-1], dirs[1:], strict=False):107 cmd = [merge_tool, 'merge', d1, d2, '--output', d2]111 with open(f'{dirs[-1]}/tmp.gcda', 'rb') as fp:112 return fp.read(-1).hex()121 filename = (filename[:-4]) + "gcno"[all …]