Skip to content

Commit 2eda545

Browse files
committed
gcovr 4.0
1 parent cc4f1a6 commit 2eda545

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install:
2525
script:
2626
- make -C $CPPUTEST_HOME/examples CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0
2727
- $CPPUTEST_HOME/examples/CppUTestExamples_tests -o junit -v
28-
- gcovr --root ./ --filter ".*examples/ApplicationLib/.*" -x -o coverage.xml
28+
- gcovr --root ./ --filter ".*/ApplicationLib/.*" -x -o coverage.xml
2929

3030
after_script:
3131
- testspace build.log{lint} [Tests]cpputest_*.xml coverage.xml

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test:
1919
override:
2020
- make -C $CPPUTEST_HOME/examples CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0
2121
- $CPPUTEST_HOME/examples/CppUTestExamples_tests -o junit -v
22-
- gcovr --root ./ --filter ".*examples/ApplicationLib/.*" -x -o coverage.xml
22+
- gcovr --root ./ --filter ".*/ApplicationLib/.*" -x -o coverage.xml
2323

2424
post:
2525
- testspace build.log{lint} [Tests]cpputest_*.xml coverage.xml

shippable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build:
2323

2424
- make -C $CPPUTEST_HOME/examples CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0
2525
- $CPPUTEST_HOME/examples/CppUTestExamples_tests -o junit -v
26-
- gcovr --root ./ --filter ".*examples/ApplicationLib/.*" -x -o coverage.xml
26+
- gcovr --root ./ --filter ".*/ApplicationLib/.*" -x -o coverage.xml
2727

2828
on_success:
2929
- testspace build.log{lint} [Tests]cpputest_*.xml coverage.xml

0 commit comments

Comments
 (0)