From f40f9d8441f43b433de9488b124604b7be755246 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Mon, 24 Mar 2014 19:41:41 -0600 Subject: [PATCH] Fix call to gcov for older gcov ver / travis --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5ee44a6..a9edd4a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,14 +2,14 @@ language: cpp compiler: - gcc before_install: - - sudo pip install cpp-coveralls --use-mirrors + - sudo pip install cpp-coveralls script: - - cmake -D ENABLE_COVERAGE:BOOL=TRUE -D CMAKE_BUILD_TYPE:STRING=Debug -D USE_LIBCXX:BOOL=FALSE . + - cmake -D ENABLE_COVERAGE:BOOL=TRUE -D CMAKE_BUILD_TYPE:STRING=Debug . - make -j2 - make test - mkdir gcov - find CMakeFiles/ -name "*.gc*" -exec mv {} gcov/ \; - - gcov -d gcov/*.gcda + - gcov -d -o gcov gcov/*.gcda - coveralls -n -E ".*\.cpp" notifications: recipients: