X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=coverage%2FMakefile;h=30477a70751617e4ab858e486fd6f1ee54c0f413;hb=f3d1f19ae308cc0559728c0ccf6281cbce5ee37c;hp=219321c7cef9d10f54e206c5601d0ff9d9171d74;hpb=f645c76e0bfa772aff97141389d45476bf091053;p=src%2Fapp-framework-binder.git diff --git a/coverage/Makefile b/coverage/Makefile index 219321c7..30477a70 100644 --- a/coverage/Makefile +++ b/coverage/Makefile @@ -8,11 +8,14 @@ all: report binaries: make -C bin -w binaries -.PHONY: clean +.PHONY: clean cleanall clean: make -C bin -w clean - rm -rf lcov-out.info report + +cleanall: clean + @echo remove all outputs and reports + @rm -rf lcov-out.info report valgrind.out 2>/dev/null || true .PHONY: test @@ -20,14 +23,12 @@ test: binaries @echo ----------------------------------------- @echo -- BEGIN TEST @echo ----------------------------------------- - @scripts/run-test.sh + @scripts/run-test.sh 2>&1 | tee run-test.output @echo ----------------------------------------- @echo -- END TEST @echo ----------------------------------------- report: test - @echo generating LCOV report - @lcov -c -d bin -o lcov-out.info @echo generating report @genhtml -s -o report lcov-out.info @echo ready: xdg-open report/index.html