-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
86 lines (86 loc) · 1.75 KB
/
project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
:project:
:which_ceedling: gem
:ceedling_version: "?"
:use_mocks: TRUE
:use_test_preprocessor: :all
:use_backtrace: :simple
:use_decorators: :auto
:build_root: build
:test_file_prefix: test_
:default_tasks:
- test:all
:test_threads: 8
:compile_threads: 8
:release_build: TRUE
:release_build:
:output: ctb.a
:plugins:
:enabled:
- gcov
- module_generator
- report_tests_pretty_stdout
- report_tests_log_factory
:report_tests_log_factory:
:reports:
- html
:paths:
:test:
- +:test/**
- -:test/support
:source:
- src/**
:include:
- src/**
:support:
- test/support
:libraries: []
:defines:
:test:
- TEST
:release: []
:flags:
:release:
:compile:
- -Wall
- -Wextra
- -Werror
- -Wpedantic
- -Wfloat-equal
- -Wshadow
- -Wconversion
:test:
:compile:
- -Wall
- -Wextra
- -Werror
- -Wpedantic
- -Wfloat-equal
- -Wshadow
- -Wconversion
:cmock:
:plugins:
- :ignore
- :callback
:verbosity: 2
:when_no_prototypes: :warn
:mock_prefix: "mock_"
:memcmp_if_unknown: true
:when_ptr: :compare_data
:weak: ""
:enforce_strict_ordering: true
:fail_on_unexpected_calls: false
:callback_include_count: true
:callback_after_arg_check: false
:exclude_setjmp_h: false
:unity:
:defines:
- UNITY_EXCLUDE_FLOAT
:gcov:
:utilities:
- gcovr
:reports:
- HtmlDetailed
:gcovr:
:html_medium_threshold: 75
:html_high_threshold: 90