summaryrefslogtreecommitdiffstats
path: root/tinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml
diff options
context:
space:
mode:
Diffstat (limited to 'tinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml')
-rwxr-xr-xtinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml73
1 files changed, 73 insertions, 0 deletions
diff --git a/tinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml b/tinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml
new file mode 100755
index 00000000..13bac556
--- /dev/null
+++ b/tinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml
@@ -0,0 +1,73 @@
+---
+
+:tools:
+ :gcov_compiler:
+ :executable: gcc
+ :arguments:
+ - -g
+ - -fprofile-arcs
+ - -ftest-coverage
+ - -I"$": COLLECTION_PATHS_TEST_SUPPORT_SOURCE_INCLUDE_VENDOR
+ - -I"$": COLLECTION_PATHS_TEST_TOOLCHAIN_INCLUDE
+ - -D$: COLLECTION_DEFINES_TEST_AND_VENDOR
+ - -DGCOV_COMPILER
+ - -DCODE_COVERAGE
+ - -c "${1}"
+ - -o "${2}"
+ :gcov_linker:
+ :executable: gcc
+ :arguments:
+ - -fprofile-arcs
+ - -ftest-coverage
+ - ${1}
+ - -o ${2}
+ - ${3}
+ :gcov_fixture:
+ :executable: ${1}
+ :gcov_report:
+ :executable: gcov
+ :arguments:
+ - -n
+ - -p
+ - -b
+ - -o "$": GCOV_BUILD_OUTPUT_PATH
+ - "\"${1}\""
+ :gcov_post_report:
+ :executable: gcovr
+ :optional: TRUE
+ :arguments:
+ - -p
+ - -b
+ - ${1}
+ - --html
+ - -o GcovCoverageResults.html
+ :gcov_post_report_basic:
+ :executable: gcovr
+ :optional: TRUE
+ :arguments:
+ - -p
+ - -b
+ - ${1}
+ - --html
+ - -o "$": GCOV_ARTIFACTS_FILE
+ :gcov_post_report_advanced:
+ :executable: gcovr
+ :optional: TRUE
+ :arguments:
+ - -p
+ - -b
+ - ${1}
+ - --html
+ - --html-details
+ - -o "$": GCOV_ARTIFACTS_FILE
+ :gcov_post_report_xml:
+ :executable: gcovr
+ :optional: TRUE
+ :arguments:
+ - -p
+ - -b
+ - ${1}
+ - --xml
+ - -o "$": GCOV_ARTIFACTS_FILE_XML
+
+...