File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ script:
20
20
- make dep.test-data dep.external
21
21
- make && make test
22
22
after_success :
23
- - if [ "$COVERAGE" = 1 ]; then coveralls -b . -i .build -i bin ; fi
23
+ - if [ "$COVERAGE" = 1 ]; then coveralls -b . -i lib -e lib/t --gcov-options '\-r' ; fi
24
24
branches :
25
25
except :
26
26
- /^wip\//
Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ test.build-gcov:
13
13
check-gcov-quick :
14
14
$(MAKE ) .gcov-note
15
15
mkdir -p $(GCOVDIR )
16
- find $(BINDIR ) $(BUILDDIR ) -name " *.gcda" \
16
+ find $(BINDIR ) $(BUILDDIR ) -path $( BUILDDIR ) /t -prune -o - name " *.gcda" -print \
17
17
| xargs $(GCOV ) --no-output --preserve-paths \
18
18
> $(GCOVDIR ) /gcov-report
19
19
@echo " See gcov report in $( GCOVDIR) /gcov-report"
20
20
check-gcov-full :
21
21
$(MAKE ) .gcov-note
22
22
mkdir -p $(GCOVDIR )
23
- find $(BINDIR ) $(BUILDDIR ) -name " *.gcda" \
24
- | xargs $(GCOV ) --preserve-paths
23
+ find $(BINDIR ) $(BUILDDIR ) -path $( BUILDDIR ) /t -prune -o - name " *.gcda" -print \
24
+ | xargs $(GCOV ) -r - -preserve-paths
25
25
mv * .gcov $(GCOVDIR )
26
26
check-lcov :
27
27
$(MAKE ) .gcov-note
You can’t perform that action at this time.
0 commit comments