Searched full:coverage (Results 1 – 25 of 28) sorted by relevance
12
/openthread-3.5.0/.github/workflows/ |
D | simulation-1.1.yml | 86 - name: Generate Coverage 92 path: tmp/coverage.info 100 COVERAGE: 1 129 - name: Generate Coverage 135 path: tmp/coverage.info 148 COVERAGE: 1 179 - name: Generate Coverage 185 path: tmp/coverage.info 193 COVERAGE: 1 222 - name: Generate Coverage [all …]
|
D | otbr.yml | 56 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 …]
|
D | posix.yml | 84 - 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 177 COVERAGE: 1 211 - name: Generate Coverage 217 path: tmp/coverage.info [all …]
|
D | simulation-1.2.yml | 55 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 …]
|
D | unit.yml | 67 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
|
D | toranj.yml | 56 COVERAGE: 1 88 COVERAGE: 1 110 - name: Generate Coverage 118 path: tmp/coverage.info 153 upload-coverage: 171 path: coverage/ 172 - name: Combine Coverage 175 - name: Upload Coverage 181 delete-coverage-artifacts: 182 needs: upload-coverage
|
D | otns.yml | 44 COVERAGE: 1 92 - name: Generate Coverage 98 path: tmp/coverage.info 131 - name: Generate Coverage 137 path: tmp/coverage.info 193 - name: Generate Coverage 199 path: tmp/coverage.info 201 upload-coverage: 219 path: coverage/ 220 - name: Upload Coverage
|
/openthread-3.5.0/third_party/mbedtls/repo/ |
D | .gitignore | 17 # Test coverage build artifacts: 18 Coverage 21 coverage-summary.txt
|
D | CMakeLists.txt | 134 …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
|
D | Makefile | 103 # 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
|
D | CONTRIBUTING.md | 68 …h` is available to show test coverage of the library. New code contributions should provide a simi…
|
D | README.md | 112 - `Coverage`. This generates code coverage information in addition to debug information.
|
/openthread-3.5.0/third_party/mbedtls/repo/tests/scripts/ |
D | basic-build-test.sh | 23 # 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
|
D | analyze_outcomes.py | 81 # fixed this branch to have full coverage of test cases.
|
D | psa_collect_statuses.py | 2 """Describe the test coverage of PSA functions in terms of return statuses.
|
/openthread-3.5.0/third_party/mbedtls/repo/docs/architecture/testing/ |
D | psa-storage-format-testing.md | 19 …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…
|
D | invasive-testing.md | 85 * 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.5.0/ |
D | CMakeLists.txt | 39 option(OT_COVERAGE "enable coverage" OFF) 88 target_compile_options(ot-config INTERFACE -g -O0 --coverage) 89 target_link_libraries(ot-config INTERFACE --coverage)
|
D | .codecov.yml | 1 coverage:
|
D | README.md | 1 …imulation] [![Docker][ot-gh-action-docker-svg]][ot-gh-action-docker] [![Coverage Status][ot-codeco…
|
/openthread-3.5.0/script/ |
D | test | 581 rm -f tmp/coverage.lcov 588 lcov --gcov-tool "$llvm_gcov" --directory . --capture --output-file tmp/coverage.info 593 lcov --directory . --capture --output-file tmp/coverage.info 595 lcov --list tmp/coverage.info 596 lcov --extract tmp/coverage.info "$PWD/src/core/common/message.cpp" | c++filt 601 ls -R coverage/ 603 readarray -d '' files < <(find coverage/ -type f -name 'coverage*.info' -print0)
|
/openthread-3.5.0/tests/toranj/ |
D | start.sh | 128 if [ "$COVERAGE" = 1 ]; then 129 coverage_option="--enable-coverage"
|
D | build.sh | 53 echo " -c/--enable-coverage Enable code coverage" 70 -c | --enable-coverage)
|
/openthread-3.5.0/tests/scripts/thread-cert/ |
D | node.py | 117 os.makedirs('/tmp/coverage/', exist_ok=True) 134 '/tmp/coverage/:/tmp/coverage/', 211 COVERAGE = int(os.getenv('COVERAGE', '0')) 216 if COVERAGE or OTBR_COVERAGE: 219 cov_file_path = f'/tmp/coverage/coverage-{unique_node_id}.info' 220 # Upload OTBR code coverage if OTBR_COVERAGE=1, otherwise OpenThread code coverage. 559 if os.getenv('COVERAGE', 0) and os.getenv('CC', 'gcc') == 'gcc':
|
/openthread-3.5.0/third_party/mbedtls/repo/programs/ssl/ |
D | ssl_test_lib.h | 152 * - For good overall test coverage, there should be at least one configuration
|
12