diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-07-28 00:07:41 -0500 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-07-28 00:07:41 -0500 |
commit | bda8b72f81d5cf29bc4a5f77229f81e4cd07eb7f (patch) | |
tree | a196383f0da0c897e933c58f82b69de1d3fc8761 /Makefile | |
parent | 666a01d3357ee7327e6cef6453f183f5c4c3a016 (diff) |
Remove -b gcov argument
It interferes in a somewhat strange way with codecov reporting
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ ifeq ($(config),coverage) test: $(EXECUTABLE) -@find $(BUILD) -name '*.gcda' -exec rm {} + ./$(EXECUTABLE) - @gcov -b -o $(BUILD)/src/ pugixml.cpp.gcda | sed -e '/./{H;$!d;}' -e 'x;/pugixml.cpp/!d;' + @gcov -o $(BUILD)/src/ pugixml.cpp.gcda | sed -e '/./{H;$!d;}' -e 'x;/pugixml.cpp/!d;' @find . -name '*.gcov' -and -not -name 'pugixml.cpp.gcov' -exec rm {} + else test: $(EXECUTABLE) |