| /third_party/libevdev/test/ |
| D | Makefile.am | 94 CLEANFILES = gcov-reports/*.gcov gcov-reports/summary.txt *.gcno *.gcda 96 gcov-report: generate-gcov-report.sh 97 $(AM_V_GEN)$(srcdir)/generate-gcov-report.sh gcov-reports $(top_builddir)/libevdev $(builddir) 99 gcov: gcov-report target 100 @cat gcov-reports/summary.txt 102 check_local_deps += gcov 106 gcov-report.txt: 109 gcov: target 115 .PHONY: gcov gcov-clean gcov-report 127 EXTRA_DIST = valgrind.suppressions generate-gcov-report.sh test-static-symbols-leak.sh
|
| D | generate-gcov-report.sh | 6 echo "Usage: ./generate-gcov-report.sh <rel-target-dir> <srcdir> [<srcdir> ... ]" 20 rm -f "$target_dir"/*.gcov 25 find ./ -name "*${file/\.c/.gcda}" -exec gcov {} \; > /dev/null 27 find ./ -name "*.gcov" \! -path "*/`basename "$target_dir"`/*" -exec mv {} "$target_dir" \; 32 for file in "$target_dir"/*.gcov; do
|
| /third_party/skia/third_party/externals/harfbuzz/m4/ |
| D | ax_code_coverage.m4 | 21 # Test also for gcov program and create GCOV variable that could be 84 # allow to override gcov location 85 AC_ARG_WITH([gcov], 86 [AS_HELP_STRING([--with-gcov[=GCOV]], [use given GCOV for coverage (GCOV=gcov).])], 88 [_AX_CODE_COVERAGE_GCOV_PROG_WITH=gcov]) 101 # check for gcov 102 AC_CHECK_TOOL([GCOV], 105 AS_IF([test "X$GCOV" = "X:"], 106 [AC_MSG_ERROR([gcov is needed to do coverage])]) 107 AC_SUBST([GCOV]) [all …]
|
| /third_party/unity/test/ |
| D | Makefile | 48 gcov unity.c | head -3 49 grep '###' $(BUILD_DIR)/unity.c.gcov -C2 || true 55 gcov unity.c | head -3 56 grep '###' $(BUILD_DIR)/unity.c.gcov -C2 || true 62 gcov unity.c | head -3 63 grep '###' $(BUILD_DIR)/unity.c.gcov -C2 || true 69 gcov unity.c | head -3 70 grep '###' $(BUILD_DIR)/unity.c.gcov -C2 || true 76 gcov unity.c | head -3 77 grep '###' $(BUILD_DIR)/unity.c.gcov -C2 || true [all …]
|
| /third_party/skia/m133/bin/ |
| D | coverage | 42 GCOV="$(realpath tools/gcov_shim)" 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
|
| /third_party/libinput/test/ |
| D | generate-gcov-report.sh | 4 echo "Usage: ./generate-gcov-report.sh <rel-target-dir> <srcdir> [<srcdir> ... ]" 18 rm -f "$target_dir"/*.gcov 25 -exec gcov {} \; > /dev/null 27 find ./ -name "*.gcov" \ 34 for file in "$target_dir"/*.gcov; do
|
| /third_party/skia/bin/ |
| D | coverage | 42 GCOV="$(realpath tools/gcov_shim)" 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
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
| D | GCOV.h | 1 //===- GCOV.h - LLVM coverage tool ------------------------------*- C++ -*-===// 10 // use 'gcov' format. 41 namespace GCOV { 45 /// A struct for passing gcov options between functions. 63 } // end namespace GCOV 65 /// GCOVBuffer - A wrapper around MemoryBuffer to provide GCOV specific 93 /// readGCOVVersion - Read GCOV version. 94 bool readGCOVVersion(GCOV::GCOVVersion &Version) { in readGCOVVersion() 98 Version = GCOV::V402; in readGCOVVersion() 103 Version = GCOV::V404; in readGCOVVersion() [all …]
|
| /third_party/openhitls/docs/zh/4_使用指南/ |
| D | 2_测试指南.md | 75 | gcov | bash build_hitls.sh gcov |开启获取覆盖率能力。 | 90 | gcov | bash build_sdv.sh gcov | 开启获取覆盖率能力。 | 105 - 源码构建过程中开启asan、debug及覆盖率:bash build_hitls.sh asan gcov debug 106 - 测试代码构建过程中开启asan、覆盖率及显示构建详情:bash build_sdv.sh asan gcov verbose
|
| /third_party/skia/third_party/externals/expat/expat/ |
| D | qa.sh | 111 gcov) BASE_COMPILE_FLAGS+=" --coverage -O0" ;; 198 gcov) 203 RUN gcov -s .libs/ ${gcda_file} 208 RUN find -name '*.gcov' | sort 268 case "${QA_PROCESSOR:=gcov}" in 269 egypt|gcov) ;; 292 QA_PROCESSOR=(egypt|gcov) # default: gcov
|
| /third_party/skia/m133/fuzz/ |
| D | coverage | 45 GCOV="$(realpath tools/gcov_shim)" 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
|
| /third_party/skia/fuzz/ |
| D | coverage | 45 GCOV="$(realpath tools/gcov_shim)" 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
|
| /third_party/skia/m133/tools/ |
| D | gcov_shim | 3 # Running gcov with -a (--all-blocks) will hang on some files. lcov uses -a. 4 # This shim strips out that flag (a minor feature) so we can run gcov. 6 CMD="gcov"
|
| /third_party/skia/tools/ |
| D | gcov_shim | 3 # Running gcov with -a (--all-blocks) will hang on some files. lcov uses -a. 4 # This shim strips out that flag (a minor feature) so we can run gcov. 6 CMD="gcov"
|
| /third_party/skia/m133/third_party/externals/expat/expat/ |
| D | qa.sh | 116 gcov) BASE_COMPILE_FLAGS+=" --coverage -O0" ;; 203 gcov) 208 RUN gcov -s .libs/ ${gcda_file} 213 RUN find . -name '*.gcov' | sort 273 case "${QA_PROCESSOR:=gcov}" in 274 egypt|gcov) ;; 298 QA_PROCESSOR=(egypt|gcov) # default: gcov
|
| /third_party/openhitls/docs/en/4_User Guide/ |
| D | 2_Test Guide.md | 74 | gcov | bash build_hitls.sh gcov |Enables the capability of obtaining the coverage rate. … 89 | gcov | bash build_sdv.sh gcov | Enables the capability of obtaining the coverage rate. … 104 - Enable ASan, debug, and coverage during source code build: bash build_hitls.sh asan gcov debug 105 …and coverage during test code build, and display build details: bash build_sdv.sh asan gcov verbose
|
| /third_party/rust/rust/src/doc/unstable-book/src/compiler-flags/ |
| D | profile.md | 9 Set the `-Zprofile` compiler flag in order to enable gcov profiling. 22 You can parse them with [llvm-cov gcov](https://llvm.org/docs/CommandGuide/llvm-cov.html#llvm-cov-g…
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
| D | GCOV.cpp | 1 //===- GCOV.cpp - LLVM coverage tool --------------------------------------===// 9 // GCOV implements the interface to read and write coverage files that use 10 // 'gcov' format. 14 #include "llvm/ProfileData/GCOV.h" 59 GCOV::GCOVVersion GCDAVersion; in readGCDA() 63 errs() << "GCOV versions do not match.\n"; in readGCDA() 131 bool GCOVFunction::readGCNO(GCOVBuffer &Buff, GCOV::GCOVVersion Version) { in readGCNO() 139 if (Version != GCOV::V402) { in readGCNO() 254 bool GCOVFunction::readGCDA(GCOVBuffer &Buff, GCOV::GCOVVersion Version) { in readGCDA() 280 if (Version != GCOV::V402) { in readGCDA() [all …]
|
| /third_party/openhitls/.github/workflows/ |
| D | cmake-single-platform.yml | 33 run: cd testcode/script && bash build_hitls.sh no_sctp asan gcov x86_64 43 run: bash build_sdv.sh no-sctp asan gcov && bash execute_sdv.sh 71 …run: cd testcode/script && bash build_hitls.sh no_sctp asan gcov pure_c add-options="-DHITLS_ATOMI… 81 …run: bash build_sdv.sh no-sctp asan gcov add-options="-DHITLS_ATOMIC_THREAD_LOCK" && bash execute_…
|
| /third_party/popt/ |
| D | configure.ac | 42 AC_ARG_ENABLE([build-gcov], 43 [AS_HELP_STRING([--enable-build-gcov], [build POPT instrumented for gcov])], [dnl
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
| D | GCOVProfiling.cpp | 1 //===- GCOVProfiling.cpp - Insert edge counters for gcov profiling --------===// 9 // This pass implements GCOV-style profiling. When this pass is run it emits 50 #define DEBUG_TYPE "insert-gcov-profiling" 53 DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden, 55 static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body", 68 llvm::report_fatal_error(std::string("Invalid -default-gcov-version: ") + in getDefault() 150 StringRef getPassName() const override { return "GCOV Profiler"; } in getPassName() 169 GCOVProfilerLegacyPass, "insert-gcov-profiling", 170 "Insert instrumentation for GCOV profiling", false, false) 173 GCOVProfilerLegacyPass, "insert-gcov-profiling", in INITIALIZE_PASS_DEPENDENCY() [all …]
|
| /third_party/ltp/testcases/kernel/device-drivers/agp/kernel_space/ |
| D | Makefile | 2 # Makefile for GCOV profiling kernel module 5 #KERNELDIR := /usr/src/linux-2.5.64-gcov
|
| /third_party/ltp/testcases/kernel/device-drivers/base/tbase/ |
| D | Makefile | 2 # Makefile for GCOV profiling kernel module 5 #KERNELDIR := /usr/src/linux-2.5.64-gcov
|
| /third_party/ltp/testcases/kernel/device-drivers/dev_sim_framework/kernel_space/ |
| D | Makefile | 2 # Makefile for GCOV profiling kernel module 5 #KERNELDIR := /usr/src/linux-2.5.64-gcov
|
| /third_party/ltp/testcases/kernel/device-drivers/include/ |
| D | Makefile | 2 # Makefile for GCOV profiling kernel module 5 #KERNELDIR := /usr/src/linux-2.5.64-gcov
|