Skip to content

Commit

Permalink
.travis.yml: try use lcov instead of gcov, as former doesn't cover th…
Browse files Browse the repository at this point in the history
…rows
  • Loading branch information
hirthwork committed Sep 24, 2016
1 parent e4b99a8 commit a25610d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ addons:
- libfuse-dev
- fuse
- attr
- lcov
before_install:
- pip install --user cpp-coveralls
- gem install coveralls-lcov
- sudo chmod 666 /dev/fuse
script:
- make test CXX="g++-4.9" CFLAGS="-O0 --coverage" LDFLAGS="-Wl,-Bstatic -lfuse -Wl,-Bdynamic -ldl"
after_success:
- coveralls --gcov gcov-4.9 --gcov-options '\-lp'
- lcov --compat-libtool --directory . --capture --output-file coverage.info
- coveralls-lcov coverage.info

0 comments on commit a25610d

Please sign in to comment.