Searched +full:- +full:dconfig_coverage (Results 1 – 3 of 3) sorted by relevance
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:: console76 $ python3 scripts/gen_gcov_files.py -i log.log82 .. code-block:: console[all …]
2 # SPDX-License-Identifier: Apache-2.08 WORK_DIR="${WORK_DIR:-${ZEPHYR_BASE}/bsim_out}"11 echo -e "\033[0;31mFailure building ${app} ${conf_file} for ${BOARD}\033[0m\n\19 local app_root="${app_root:-${ZEPHYR_BASE}}"20 local BOARD_ROOT="${BOARD_ROOT:-${ZEPHYR_BASE}}"21 local conf_file="${conf_file:-prj.conf}"22 local extra_conf_file="${extra_conf_file:-""}"23 local conf_overlay="${conf_overlay:-""}"24 local snippet="${snippet:-""}"26 default_cmake_args=(-DCONFIG_COVERAGE=y -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \[all …]
3 # Copyright (c) 2018-2025 Intel Corporation5 # SPDX-License-Identifier: Apache-2.076 completed = done - filtered_static79 pass rate = passed / (total - filtered_configs)80 case pass rate = passed_cases / (cases - filtered_cases - skipped_cases)149 length = int(log10(-n))+2153 selected_cases = self.cases - self.filtered_cases154 selected_configs = self.done - self.filtered_static - self.filtered_runtime509 config_re = re.compile('(CONFIG_[A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$')510 dt_re = re.compile('([A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$')[all …]