| /third_party/popt/ |
| D | Makefile.am | 42 .PHONY: lcov-reset # run lcov from scratch, always 43 lcov-reset: 44 make lcov-run 45 make lcov-report 47 .PHONY: lcov # run lcov from scratch if the dir is not there 48 lcov: target 49 make lcov-reset 51 .PHONY: lcov-run # reset run coverage tests 52 lcov-run: 53 @-rm -rf lcov [all …]
|
| /third_party/benchmark/test/ |
| D | CMakeLists.txt | 273 find_program(LCOV lcov) 276 if (GCOV AND LCOV AND GENHTML AND CTEST AND HAVE_CXX_FLAG_COVERAGE) 278 OUTPUT ${CMAKE_BINARY_DIR}/lcov/index.html 279 COMMAND ${LCOV} -q -z -d . 280 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o before.lcov -i 282 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o after.lcov 283 COMMAND ${LCOV} -q -a before.lcov -a after.lcov --output-file final.lcov 284 COMMAND ${LCOV} -q -r final.lcov "'${CMAKE_SOURCE_DIR}/test/*'" -o final.lcov 285 … COMMAND ${GENHTML} final.lcov -o lcov --demangle-cpp --sort -p "${CMAKE_BINARY_DIR}" -t benchmark 288 COMMENT "Running LCOV" [all …]
|
| /third_party/node/deps/cares/ |
| D | aminclude_static.am | 13 # by lcov for code coverage. (Default: 21 # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov 23 # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov 27 # collecting lcov instance. (Default: ) 28 # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov 31 # lcov instance. (Default: empty) 32 # - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov 66 code_coverage_v_lcov_cap_0 = @echo " LCOV --capture" $(CODE_COVERAGE_OUTPUT_FILE); 69 code_coverage_v_lcov_ign_0 = @echo " LCOV --remove /tmp/*" $(CODE_COVERAGE_IGNORE_PATTERN); 87 …$(code_coverage_v_lcov_cap)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE… [all …]
|
| /third_party/skia/third_party/externals/harfbuzz/m4/ |
| D | ax_code_coverage.m4 | 114 AC_CHECK_PROG([LCOV], [lcov], [lcov]) 117 AS_IF([ test -z "$LCOV" ], [ 118 AC_MSG_ERROR([To enable code coverage reporting you must have lcov installed]) 122 AC_MSG_ERROR([Could not find genhtml from the lcov package]) 144 …$(code_coverage_v_lcov_cap)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE… 145 …$(code_coverage_v_lcov_ign)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE… 154 -$(LCOV) --directory $(top_builddir) -z 174 # by lcov for code coverage. (Default: 182 # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov 184 # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov [all …]
|
| /third_party/node/deps/cares/m4/ |
| D | ax_code_coverage.m4 | 88 # by lcov for code coverage. (Default: 96 # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov 98 # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov 102 # collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) 103 # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov 106 # lcov instance. (Default: empty) 107 # - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov 144 code_coverage_v_lcov_cap_0 = @echo \" LCOV --capture\" \$(CODE_COVERAGE_OUTPUT_FILE); 147 code_coverage_v_lcov_ign_0 = @echo \" LCOV --remove /tmp/*\" \$(CODE_COVERAGE_IGNORE_PATTERN); 165 …\$(code_coverage_v_lcov_cap)\$(LCOV) \$(code_coverage_quiet) \$(addprefix --directory ,\$(CODE_COV… [all …]
|
| /third_party/mbedtls/scripts/ |
| D | lcov.sh | 42 # Pass absolute paths as lcov output files. This works around a bug 43 # whereby lcov tries to create the output file in the root directory 44 # if it has emitted a warning. A fix was released in lcov 1.13 in 2016. 46 # https://github.com/linux-test-project/lcov/commit/632c25a0d1f5e4d2f4fd5b28ce7c8b86d388c91f 48 lcov --capture --initial --directory $library_dir -o "$COVTMP/files.info" 49 lcov --rc lcov_branch_coverage=1 --capture --directory $library_dir -o "$COVTMP/tests.info" 50 …lcov --rc lcov_branch_coverage=1 --add-tracefile "$COVTMP/files.info" --add-tracefile "$COVTMP/tes… 51 lcov --rc lcov_branch_coverage=1 --remove "$COVTMP/all.info" -o "$COVTMP/final.info" '*.h'
|
| /third_party/skia/third_party/externals/tint/tools/ |
| D | tint-generate-coverage | 33 echo "Generates a lcov.info file at the project root, which can be used by" 44 LCOV_FILE="${ROOT_DIR}/lcov.info" 59 echo "lcov.info was not generated. Is coverage generation enabled?" 71 # Export as lcov 73 llvm-cov export --instr-profile="${PROFDATA_FILE}" --format=lcov --object=${TARGET_EXE} > "${LCOV_F…
|
| /third_party/ffmpeg/tests/ |
| D | Makefile | 310 coverage.info: TAG = LCOV 312 $(M)lcov -q -d $(CURDIR) -b $(patsubst src%,./,$(SRC_LINK)) --capture | \ 314 $(M)lcov -q --remove $@.in "/usr*" > $@ 317 lcov: TAG = GENHTML target 318 lcov: coverage.info target 319 $(M)genhtml -q -o $(CURDIR)/lcov $< 321 lcov-reset: TAG = LCOV 322 lcov-reset: 323 $(M)lcov -q -d $(CURDIR) --zerocounters 338 .PHONY: fate* lcov lcov-reset
|
| /third_party/benchmark/ |
| D | .gitignore | 16 # lcov 17 *.lcov 18 /lcov
|
| /third_party/skia/bin/ |
| D | coverage | 47 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/baseline -i 52 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/coverage 54 lcov -q -a "$DIR"/baseline -a "$DIR"/coverage -o "$DIR"/merged
|
| /third_party/skia/third_party/externals/expat/expat/ |
| D | coverage.sh | 177 lcov -c -d "${capture_dir}" -i -o "${coverage_info}-zero" &> run.log 193 lcov -c -d "${capture_dir}" -o "${coverage_info}-test" &>> run.log 194 lcov \ 228 lcov "${lcov_merge_args[@]}" 240 … lcov -q -o "${coverage_dir}/${coverage_info}" -r "${coverage_dir}/${coverage_info}" "${pattern}" 259 lcov -q -l "${coverage_dir}/${coverage_info}"
|
| /third_party/curl/scripts/ |
| D | coverage.sh | 37 lcov -d . -c -o cov.lcov 38 genhtml cov.lcov --output-directory coverage --title "curl code coverage"
|
| /third_party/skia/fuzz/ |
| D | coverage | 50 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/baseline -i 77 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/coverage 79 lcov -q -a "$DIR"/baseline -a "$DIR"/coverage -o "$DIR"/merged
|
| /third_party/node/deps/npm/node_modules/debug/ |
| D | package.json | 31 "test:coverage": "cat ./coverage/lcov.info | coveralls" 46 "mocha-lcov-reporter": "^1.2.0",
|
| /third_party/mbedtls/ |
| D | Makefile | 21 .PHONY: all no_test programs lib tests install uninstall clean test check lcov apidoc apidoc_clean 182 # 3. Run scripts/lcov.sh to generate an HTML report. 183 lcov: target 184 scripts/lcov.sh
|
| /third_party/node/deps/npm/node_modules/smart-buffer/ |
| D | package.json | 39 "mocha-lcov-reporter": "^1.3.0", 52 "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls",
|
| /third_party/elfutils/ |
| D | Makefile.am | 51 COVERAGE_OUTPUT_FILE = $(PACKAGE_NAME).lcov 89 $(LCOV) \
|
| D | .gitignore | 19 /*.lcov
|
| /third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
| D | README | 106 You can measure the code coverage of a kernel module with the gocv and lcov 108 http://ltp.sourceforge.net/coverage/lcov.php for details.
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/ |
| D | Makefile | 1457 .PHONY: lcov-html 1458 lcov-html: 1459 lcov -c -d $(BUILDDIR) > lcov.info 1460 genhtml lcov.info --output-directory lcov-html 1465 rm -f lcov.info 1466 rm -rf lcov-html
|
| /third_party/skia/third_party/externals/tint/ |
| D | .gitignore | 13 lcov.info
|
| /third_party/skia/tools/ |
| D | gcov_shim | 3 # Running gcov with -a (--all-blocks) will hang on some files. lcov uses -a.
|
| /third_party/ffmpeg/ |
| D | .gitignore | 36 /lcov/
|
| /third_party/pcre2/pcre2/ |
| D | Makefile.am | 789 # gcov/lcov code coverage reporting 820 $(LCOV) $(coverage_quiet) \ 827 $(LCOV) $(coverage_quiet) \ 835 $(LCOV) $(coverage_quiet) \ 853 -$(LCOV) $(coverage_quiet) --zerocounters --directory $(top_builddir)
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/ |
| D | Makefile | 1437 lcov-html: 1438 lcov -c -d .. > lcov.info 1439 genhtml lcov.info --output-directory lcov-html 1445 rm -f lcov.info 1446 rm -rf lcov-html
|