From 68eefcb60b9b8fdf75dbdd444cd5c3546798c3c4 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 15 Jan 2017 16:21:56 -0500 Subject: [PATCH] use gcovinator instead of gcovr to generate gcov HTML files --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6391d8c..6f2cdf7 100644 --- a/Makefile +++ b/Makefile @@ -9,5 +9,5 @@ clean: test: ./waf build --targets tests ./build/tests - @mkdir -p coverage - -@(cd build; gcovr --object-directory=src/core --root=.. -o ../coverage/index.html --html --html-details --gcov-filter='.*src#core.*') + @-rm -rf coverage + -gcovinator -b build -s src