Skip to content

Commit ab2a8d9

Browse files
committed
path update for new gcovr 4.0
1 parent 6af1244 commit ab2a8d9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.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 ".*/examples/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 ".*/examples/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 ".*/examples/ApplicationLib/.*" -x -o coverage.xml
2727

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

0 commit comments

Comments
 (0)