summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2016-07-28 00:07:41 -0500
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2016-07-28 00:07:41 -0500
commitbda8b72f81d5cf29bc4a5f77229f81e4cd07eb7f (patch)
treea196383f0da0c897e933c58f82b69de1d3fc8761
parent666a01d3357ee7327e6cef6453f183f5c4c3a016 (diff)
Remove -b gcov argument
It interferes in a somewhat strange way with codecov reporting
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 62f7054..673aaee 100644
--- a/Makefile
+++ b/Makefile
@@ -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)