Searched refs:lcov (Results 1 – 25 of 88) sorted by relevance
1234
13 set(LCOV_DATA_PATH "${CMAKE_BINARY_DIR}/lcov/data")16 set(LCOV_HTML_PATH "${CMAKE_BINARY_DIR}/lcov/html")27 # This function will add lcov evaluation for target <TNAME>. Only sources of52 # Search for required lcov binaries.53 find_program(LCOV_BIN lcov)56 find_package_handle_standard_args(lcov67 # enable no-external flag for lcov, if available.94 # This function will merge lcov files to a single target file. Additional lcov97 # Remove ${OUTFILE} from ${ARGV} and generate lcov parameters with files.124 if (NOT TARGET lcov-capture-init)[all …]
224 find_program(LCOV lcov)229 OUTPUT ${CMAKE_BINARY_DIR}/lcov/index.html231 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o before.lcov -i233 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o after.lcov234 COMMAND ${LCOV} -q -a before.lcov -a after.lcov --output-file final.lcov235 COMMAND ${LCOV} -q -r final.lcov "'${CMAKE_SOURCE_DIR}/test/*'" -o final.lcov236 … COMMAND ${GENHTML} final.lcov -o lcov --demangle-cpp --sort -p "${CMAKE_BINARY_DIR}" -t benchmark242 DEPENDS ${CMAKE_BINARY_DIR}/lcov/index.html243 COMMENT "LCOV report at lcov/index.html"255 " lcov: ${LCOV}\n"
1 FIND_PROGRAM( LCOV_PATH lcov )5 # message ( "lcov: ${LCOV_PATH}" )9 …COMMAND "${GENHTML_PATH}" --rc genhtml_branch_coverage=1 --output-directory lcov ${PROJECT_NAME}.i…10 COMMAND echo "Coverage report in: file://${CMAKE_BINARY_DIR}/lcov/index.html"
14 lcov -d . -c -o cov.lcov15 genhtml cov.lcov --output-directory coverage --title "curl code coverage"
106 # List of supported lcov versions.109 AC_CHECK_PROG([LCOV], [lcov], [lcov])113 AC_CACHE_CHECK([for lcov version], ax_cv_lcov_version, [123 …lcov_msg="To enable code coverage reporting you must have one of the following lcov versions insta…129 …lcov_msg="You must have one of the following versions of lcov: $lcov_version_list (found: $lcov_ve…136 AC_MSG_ERROR([Could not find genhtml from the lcov package])154 # by lcov for code coverage. (Default:160 # - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the lcov instance.162 # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the lcov instance.
14 # lcov15 *.lcov16 /lcov
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
116 AC_CHECK_PROG([LCOV], [lcov], [lcov])120 AC_MSG_ERROR([To enable code coverage reporting you must have lcov installed])124 AC_MSG_ERROR([Could not find genhtml from the lcov package])176 # by lcov for code coverage. (Default:184 # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov186 # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov190 # collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH)191 # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov194 # lcov instance. (Default: empty)195 # - 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
40 util/generate-asm-lcov.py "$BUILD/callgrind" "$BUILD" > "$BUILD/asm.info"48 lcov -c -d "$BUILD" -b "$BUILD" -o "$BUILD/lcov.info"49 lcov -r "$BUILD/lcov.info" -o "$BUILD/filtered.info" "*_test.c" "*_test.cc" "*/third_party/googlete…
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
11 lcov -d . --zerocounters13 lcov --base-directory . --directory . --capture --output-file app.info
25 lcov --base-directory . --directory . -c -o coverage.info26 lcov -e coverage.info '**/src/csharp/ext/*' -o coverage.info
25 lcov --capture --directory . --output-file "$tmp1"26 lcov --extract "$tmp1" "$root/src/php/ext/grpc/*" --output-file "$tmp2"
25 lcov --capture --directory . --output-file "$tmp1"26 lcov --extract "$tmp1" "$root/src/*" "$root/include/*" --output-file "$tmp2"
25 lcov --capture --directory . --output-file "$tmp1"26 lcov --extract "$tmp1" "$root/src/ruby/*" --output-file "$tmp2"
15 lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/nanopb.info18 lcov -r build/coverage/nanopb.info '*tests*' -o build/coverage/nanopb.info
12 /lcov-coverage.info13 /lcov-html/
38 Generating a test coverage report (requires lcov[^1]; result in `build/lcov/index.html`):44 [^1]: Installation with homebrew: `brew install lcov`
76 GOLDEN=$TESTDIR/golden.lcov121 java -cp dist/emma.jar emmarun -r lcov -cp $JAVADIR \122 -sp $JAVADIR -Dreport.lcov.out.file=$COVERAGE com.android.bunnies.Bunny