From cec0a002ffebda5040f9a00ad0f67fbfad53b80f Mon Sep 17 00:00:00 2001 From: Emilia Kasper Date: Fri, 5 Aug 2016 11:33:48 +0200 Subject: [PATCH] Add --gcov-options '\-lp' to coverage Should result in more accurate header file coverage, see https://github.com/eddyxu/cpp-coveralls/issues/54 Reviewed-by: Kurt Roeckx --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8e98850148..cd8589f9cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -114,7 +114,7 @@ script: after_success: - if [ -n "$COVERALLS" ]; then - coveralls -b .; + coveralls -b . --gcov-options '\-lp'; fi; notifications: -- GitLab