Home
last modified time | relevance | path

Searched full:coverage (Results 1 – 25 of 51) sorted by relevance

123

/openthread-3.4.0/third_party/nlbuild-autotools/repo/automake/post/rules/
Dcoverage.am20 # This file is the automake footer for all code-coverage related
24 # (automake in particular) such that 'make coverage' may be invoked
32 # coverage:
33 # Execute local and recursive coverage targets across the
38 # coverage-local:
39 # Execute local coverage targets at the current invocation point.
43 # coverage-recursive:
44 # Recursively execute the 'coverage' target across the
51 # targets at the current invocation point. Local coverage targets
53 # coverage targets are made.
[all …]
/openthread-3.4.0/third_party/nlbuild-autotools/repo/automake/pre/macros/
Dcoverage.am20 # other automake headers and files for code coverage.
26 # Suffix for the code coverage report "bundle".
31 # Suffix for the lcov "info" file inside the code coverage report bundle.
60 # generate-coverage-report <directory>
62 # Capture, using lcov, a coverage report from the specified directory 'directory'
65 # <directory> - The directory from which lcov should search for coverage data (*.gcno & *.gcda)
67 # - create baseline coverage data file (base.info) with '-i|--initial' option
68 # - create test coverage data file (test.info)
69 # - combine baseline and test coverage data to create the final "info" file
71 # Then, on success, generate an HTML-based coverage report using genhtml.
[all …]
/openthread-3.4.0/third_party/nlbuild-autotools/repo/autoconf/m4/
Dnl_enable_coverage_reporting.m420 # --enable-coverage configuration option to the package and
21 # controls whether the package will be built for code coverage
31 # Adds an --enable-coverage-reports configuration option to the
34 # without code coverage reports, using the LCOV package.
54 # to build and generate the coverage reports.
59 AC_CACHE_CHECK([whether to build graphical code coverage reports],
62 AC_ARG_ENABLE(coverage-reports,
63 …[AS_HELP_STRING([--enable-coverage-reports],[Enable the generation of code coverage reports (requi…
72 AC_MSG_ERROR([Invalid value ${enableval} for --enable-coverage])
81 # If coverage is not enabled, then coverage reports
[all …]
Dnl_enable_coverage.m420 # --enable-coverage configuration option to the package and
21 # controls whether the package will be built for code coverage.
30 # Adds an --enable-coverage configuration option to the package with a
32 # whether the package will be built with or without code coverage.
55 AC_CACHE_CHECK([whether to build code-coverage instances of programs and libraries],
58 AC_ARG_ENABLE(coverage,
59 …[AS_HELP_STRING([--enable-coverage],[Enable the generation of code-coverage instances @<:@default=…
67 …AC_MSG_ERROR([both --enable-optimization and --enable-coverage cannot used. Please, choose one or …
72 AC_MSG_ERROR([Invalid value ${enableval} for --enable-coverage])
79 AC_MSG_WARN([--enable-optimization was specified, coverage disabled])
[all …]
/openthread-3.4.0/third_party/nlbuild-autotools/repo/etc/
Dlcov.config22 # ensure that branch coverage is reported.
28 # Coverage rate limits
32 # Width of line coverage field in source code view
35 # Width of branch coverage field in source code view
80 # Include function coverage data display
83 # Include branch coverage data display
104 # Specify whether to capture coverage data for external source
121 # the base-directory when collecting coverage data.
142 # Specify if function coverage data should be collected and
146 # Specify if branch coverage data should be collected and
/openthread-3.4.0/.github/workflows/
Dsimulation-1.1.yml117 - name: Generate Coverage
123 path: tmp/coverage.info
131 COVERAGE: 1
160 - name: Generate Coverage
166 path: tmp/coverage.info
179 COVERAGE: 1
210 - name: Generate Coverage
216 path: tmp/coverage.info
224 COVERAGE: 1
253 - name: Generate Coverage
[all …]
Dotbr.yml56 COVERAGE: 1
86 export CI_ENV="$(bash <(curl -s https://codecov.io/env)) -e GITHUB_ACTIONS -e COVERAGE"
92 path: /tmp/coverage/
103 - name: Generate Coverage
109 path: tmp/coverage.info
166 COVERAGE: 1
195 export CI_ENV="$(bash <(curl -s https://codecov.io/env)) -e GITHUB_ACTIONS -e COVERAGE"
201 path: /tmp/coverage/
212 - name: Generate Coverage
218 path: tmp/coverage.info
[all …]
Dposix.yml84 - name: Generate Coverage
90 path: tmp/coverage.info
121 - name: Generate Coverage
127 path: tmp/coverage.info
132 COVERAGE: 1
161 - name: Generate Coverage
167 path: tmp/coverage.info
172 COVERAGE: 1
193 - name: Generate Coverage
199 path: tmp/coverage.info
[all …]
Dunit.yml67 COVERAGE: 1
89 - name: Generate Coverage
95 path: tmp/coverage.info
98 upload-coverage:
115 path: coverage/
116 - name: Combine Coverage
119 - name: Upload Coverage
125 delete-coverage-artifacts:
126 needs: upload-coverage
Dsimulation-1.2.yml55 COVERAGE: 1
109 - name: Generate Coverage
115 path: tmp/coverage.info
122 COVERAGE: 1
175 - name: Generate Coverage
181 path: tmp/coverage.info
222 - name: Generate Coverage
228 path: tmp/coverage.info
233 COVERAGE: 1
265 - name: Generate Coverage
[all …]
Dtoranj.yml56 COVERAGE: 1
86 COVERAGE: 1
108 - name: Generate Coverage
116 path: tmp/coverage.info
144 upload-coverage:
162 path: coverage/
163 - name: Combine Coverage
166 - name: Upload Coverage
172 delete-coverage-artifacts:
173 needs: upload-coverage
Dotns.yml44 COVERAGE: 1
93 - name: Generate Coverage
99 path: tmp/coverage.info
133 - name: Generate Coverage
139 path: tmp/coverage.info
196 - name: Generate Coverage
202 path: tmp/coverage.info
204 upload-coverage:
222 path: coverage/
223 - name: Upload Coverage
/openthread-3.4.0/examples/
DMakefile-simulation33 COVERAGE ?= 0
77 # If the user has asserted COVERAGE, alter the configuration options
228 # coverage-target <target>
230 # Generate code coverage from unit tests for OpenThread for the
233 # target - The target to generate code coverage for.
235 define coverage-target
236 $(ECHO) " COVERAGE $(1)"
238 coverage
239 endef # coverage-target
269 COVERAGE_TARGETS += coverage-$(1)
[all …]
/openthread-3.4.0/src/posix/
DMakefile-posix33 COVERAGE ?= 0
83 # If the user has asserted COVERAGE, alter the configuration options
240 # coverage-target <target>
242 # Generate code coverage from unit tests for OpenThread for the
245 # target - The target to generate code coverage for.
247 define coverage-target
248 $(ECHO) " COVERAGE $(1)"
250 coverage
251 endef # coverage-target
281 COVERAGE_TARGETS += coverage-$(1)
[all …]
/openthread-3.4.0/third_party/nlbuild-autotools/repo/examples/
DMakefile-tests.am94 $(call generate-coverage-report,${top_builddir})
96 coverage-local: $(@PACKAGE_SHORT_UPPER@_COVERAGE_INFO)
98 clean-local: clean-local-coverage
100 .PHONY: clean-local-coverage
101 clean-local-coverage:
Dconfigure.ac219 # Code coverage and compiler optimization
222 # Coverage
372 # Add any code coverage CPPFLAGS and LIBS
430 Build coverage libraries : ${nl_cv_build_coverage}
431 Build coverage reports : ${nl_cv_build_coverage_reports}
/openthread-3.4.0/third_party/nlbuild-autotools/repo/
DCHANGES67 * Added code coverage support for clang, which uses a link flag
68 --coverage instead of linking to a library(-lgov) as gcc does
69 for code coverage functions.
86 * Added support for coverage-local and check-local targets. Added
87 documentation for all coverage-related targets.
151 correctly on some Linux distributions by specifying coverage
166 * Addressed an issue with the 'make coverage' target where certain
216 * Improve the code coverage generation process to cover an entire
/openthread-3.4.0/third_party/mbedtls/repo/
D.gitignore17 # Test coverage build artifacts:
18 Coverage
21 coverage-summary.txt
DCMakeLists.txt134 …CACHE STRING "Choose the type of build: None Debug Release Coverage ASan ASanDbg MemSan MemSanDbg …
205 set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
216 set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
248 if(CMAKE_BUILD_TYPE STREQUAL "Coverage")
250 set(CMAKE_SHARED_LINKER_FLAGS "--coverage")
252 endif(CMAKE_BUILD_TYPE STREQUAL "Coverage")
321 COMMAND rm -rf Coverage
327 …cription-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
DMakefile103 # note: for coverage testing, build with:
104 # make CFLAGS='--coverage -g3 -O0'
112 rm -rf Coverage
118 …description-file descriptions --keep-descriptions --legend --branch-coverage -o Coverage final.info
/openthread-3.4.0/third_party/mbedtls/repo/tests/scripts/
Dbasic-build-test.sh23 # test report and code coverage report.
89 # Step 1 - Make and instrumented build for code coverage
90 export CFLAGS=' --coverage -g3 -O0 '
91 export LDFLAGS=' --coverage'
144 # Step 3 - Process the coverage report
250 # Step 4e - Coverage
251 echo "Coverage"
282 } | tee coverage-summary.txt
291 # the coverage report. If something did go wrong, rm will complain so this
/openthread-3.4.0/third_party/nlbuild-autotools/repo/make/post/rules/
Dbootstrap.mak26 all check coverage dist distcheck doc docdist install install-headers pretty pretty-check: Makefile target
79 $(NL_V_AT)echo " coverage"
81 $(NL_V_AT)echo " and functional tests, and generate code coverage results "
/openthread-3.4.0/third_party/mbedtls/repo/docs/architecture/testing/
Dpsa-storage-format-testing.md19 …vely, this would require keeping a large amount of test data (full test coverage multiplied by the…
72 Objective: ensure that the coverage is sufficient to have assurance that all keys are stored correc…
81 In addition, the coverage of key material must ensure that any variation in key representation is d…
89 Objective: have test coverage for lifetimes other than the default persistent lifetime (`PSA_KEY_LI…
Dinvasive-testing.md85 * Coverage: we need to test behaviors which are not easy to trigger by using the API or which canno…
151 | Coverage | ~ Many useful tests are not reasonably achievable |
166 | Coverage | ~ Many useful tests are not reasonably achievable |
184 | Coverage | ~ Many useful tests require additional internal interfaces |
201 | Coverage | ~ Good for platform-independent properties, if we can guarantee them statically |
213 | Coverage | ++ Most things can be tested that way |
239 | Coverage | ! Limited scope |
259 | Coverage | ++ The sky is the limit |
/openthread-3.4.0/tests/toranj/
Dbuild.sh54 echo " -c/--enable-coverage Enable code coverage"
68 coverage=no
75 -c | --enable-coverage)
76 coverage=yes
105 "--enable-coverage=$coverage"
113 "--enable-coverage=$coverage"
255 --enable-coverage=${coverage} \

123