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, 0 insertions, 73 deletions
diff --git a/tinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml b/tinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml
deleted file mode 100755
index 13bac556..00000000
--- a/tinyusb/test/vendor/ceedling/plugins/gcov/config/defaults.yml
+++ /dev/null
@@ -1,73 +0,0 @@
----
-
-: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
-
-...