summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-11-01 17:49:46 +0700
committerhathach <[email protected]>2019-11-01 17:49:46 +0700
commitab84731f2afeea4b9e56020a7657697cceac9bbf (patch)
tree65eb47642bc1ef383471265ba72529f13206a51a /test
parentb25faa97c2881f6f759188a8e104f1d9f5c18999 (diff)
update test project yml
Diffstat (limited to 'test')
-rw-r--r--test/project.yml18
1 files changed, 14 insertions, 4 deletions
diff --git a/test/project.yml b/test/project.yml
index a130569c8..688423e11 100644
--- a/test/project.yml
+++ b/test/project.yml
@@ -18,6 +18,9 @@
:default_tasks:
- test:all
+#:test_build:
+# :use_assembly: TRUE
+
#:release_build:
# :output: MyApp.out
# :use_assembly: FALSE
@@ -40,13 +43,12 @@
# in order to add common defines:
# 1) remove the trailing [] from the :common: section
# 2) add entries to the :common: section (e.g. :test: has TEST defined)
- :commmon: &common_defines []
+ :common: &common_defines
+ - _UNITY_TEST_
:test:
- *common_defines
- - _TEST_
:test_preprocess:
- *common_defines
- - _TEST_
:cmock:
:mock_prefix: mock_
@@ -64,8 +66,15 @@
int8: INT8
bool: UINT8
+# Add -gcov to the plugins list to make sure of the gcov plugin
+# You will need to have gcov and gcovr both installed to make it work.
+# For more information on these options, see docs in plugins/gcov
:gcov:
- :html_report_type: basic
+ :html_report: TRUE
+ :html_report_type: detailed
+ :html_medium_threshold: 75
+ :html_high_threshold: 90
+ :xml_report: FALSE
#:tools:
# Ceedling defaults to using gcc for compiling, linking, etc.
@@ -92,4 +101,5 @@
- stdout_pretty_tests_report
- module_generator
- raw_output_report
+ - colour_report
...