Searched refs:lcov (Results 1 – 25 of 50) sorted by relevance
12
42 .PHONY: lcov-reset # run lcov from scratch, always43 lcov-reset:44 make lcov-run45 make lcov-report47 .PHONY: lcov # run lcov from scratch if the dir is not there48 lcov: target49 make lcov-reset51 .PHONY: lcov-run # reset run coverage tests52 lcov-run:53 @-rm -rf lcov[all …]
241 find_program(LCOV lcov)246 OUTPUT ${CMAKE_BINARY_DIR}/lcov/index.html248 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o before.lcov -i250 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o after.lcov251 COMMAND ${LCOV} -q -a before.lcov -a after.lcov --output-file final.lcov252 COMMAND ${LCOV} -q -r final.lcov "'${CMAKE_SOURCE_DIR}/test/*'" -o final.lcov253 … COMMAND ${GENHTML} final.lcov -o lcov --demangle-cpp --sort -p "${CMAKE_BINARY_DIR}" -t benchmark259 DEPENDS ${CMAKE_BINARY_DIR}/lcov/index.html260 COMMENT "LCOV report at lcov/index.html"272 " lcov: ${LCOV}\n"
177 lcov -c -d "${capture_dir}" -i -o "${coverage_info}-zero" &> run.log193 lcov -c -d "${capture_dir}" -o "${coverage_info}-test" &>> run.log194 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}"
37 lcov -d . -c -o cov.lcov38 genhtml cov.lcov --output-directory coverage --title "curl code coverage"
13 # by lcov for code coverage. (Default:21 # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov23 # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov27 # collecting lcov instance. (Default: )28 # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov31 # lcov instance. (Default: empty)32 # - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov
47 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/baseline -i52 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/coverage54 lcov -q -a "$DIR"/baseline -a "$DIR"/coverage -o "$DIR"/merged
88 # by lcov for code coverage. (Default:96 # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov98 # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov102 # collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH)103 # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov106 # lcov instance. (Default: empty)107 # - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov224 AC_CHECK_PROG([LCOV], [lcov], [lcov])228 AC_MSG_ERROR([To enable code coverage reporting you must have lcov installed])232 AC_MSG_ERROR([Could not find genhtml from the lcov package])
114 AC_CHECK_PROG([LCOV], [lcov], [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])174 # by lcov for code coverage. (Default:182 # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov184 # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov188 # collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH)189 # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov192 # lcov instance. (Default: empty)193 # - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov
16 # lcov17 *.lcov18 /lcov
49 lcov --capture --initial --directory library -o Coverage/tmp/files.info50 lcov --rc lcov_branch_coverage=1 --capture --directory library -o Coverage/tmp/tests.info51 …lcov --rc lcov_branch_coverage=1 --add-tracefile Coverage/tmp/files.info --add-tracefile Coverage/…52 lcov --rc lcov_branch_coverage=1 --remove Coverage/tmp/all.info -o Coverage/tmp/final.info '*.h'
263 $(M)lcov -q -d $(CURDIR) -b $(patsubst src%,./,$(SRC_LINK)) --capture | \265 $(M)lcov -q --remove $@.in "/usr*" > $@268 lcov: TAG = GENHTML target269 lcov: coverage.info target270 $(M)genhtml -q -o $(CURDIR)/lcov $<272 lcov-reset: TAG = LCOV273 lcov-reset:274 $(M)lcov -q -d $(CURDIR) --zerocounters289 .PHONY: fate* lcov lcov-reset
50 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/baseline -i77 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/coverage79 lcov -q -a "$DIR"/baseline -a "$DIR"/coverage -o "$DIR"/merged
2 lcov -b . -d . -c -o tmp.info3 lcov -e tmp.info \*/codec/\* -o gcov.info
7 .PHONY: all no_test programs lib tests install uninstall clean test check lcov apidoc apidoc_clean146 lcov: target147 scripts/lcov.sh
324 # 3. Run scripts/lcov.sh to generate an HTML report.325 ADD_CUSTOM_TARGET(lcov target326 COMMAND scripts/lcov.sh
19 /*.lcov
51 COVERAGE_OUTPUT_FILE = $(PACKAGE_NAME).lcov
36 /lcov/
13 lcov.info
73 llvm-cov export --instr-profile="${PROFDATA_FILE}" --format=lcov --object=${TARGET_EXE} > "${LCOV_F…
24 * `lcov.info` - A binary coverage file that can be consumed with the [VSCode Coverage Gutters](http…
13 - Don't decrease the current code coverage (see coverage/lcov-report/index.html)
106 You can measure the code coverage of a kernel module with the gocv and lcov108 http://ltp.sourceforge.net/coverage/lcov.php for details.
143 make lcov
26 LCOV ?= lcov