File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -105,15 +105,16 @@ jobs:
105
105
106
106
echo " Running mcdc-checker..."
107
107
mcdc-checker -a -j $GITHUB_WORKSPACE/doc/coverage/mcdc_report.json \
108
- -I $GITHUB_WORKSPACE/include $(find $GITHUB_WORKSPACE/src -type f -name '*.c' | tr '\n' ' ') \
108
+ -I $GITHUB_WORKSPACE/include \
109
+ -I $GITHUB_WORKSPACE/test/include \
110
+ $(find $GITHUB_WORKSPACE/src -type f -name '*.c' | tr '\n' ' ') \
111
+ $(find $GITHUB_WORKSPACE/test -type f -name '*.c' | tr '\n' ' ') \
109
112
> $GITHUB_WORKSPACE/doc/coverage/mcdc_checker_output.log 2>&1 || true
110
113
111
114
echo "Displaying MC/DC Checker Output:"
112
115
cat $GITHUB_WORKSPACE/doc/coverage/mcdc_checker_output.log
113
116
114
117
115
-
116
-
117
118
- name : Display MC/DC Checker Output
118
119
run : |
119
120
echo "Displaying MC/DC Checker Output:"
You can’t perform that action at this time.
0 commit comments