Add make test code coverage reporting using gcov

Change-Id: Ia8247841fdbe76e1d888aab49ae213b4216af273
Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
This commit is contained in:
Juraj Sloboda
2016-11-16 19:50:24 +01:00
committed by Damjan Marion
parent d7cb1b5f22
commit 0279b29f32
4 changed files with 44 additions and 6 deletions
+25 -4
View File
@@ -8,6 +8,7 @@ endif
PYTHON_VENV_PATH=$(VPP_PYTHON_PREFIX)/virtualenv
PYTHON_DEPENDS=scapy==2.3.3 pexpect
SCAPY_SOURCE=$(WS_ROOT)/build-root/python/virtualenv/lib/python2.7/site-packages/
BUILD_COV_DIR = $(BR)/test-cov
.pip-install.ok:
@@ -30,11 +31,15 @@ SCAPY_SOURCE=$(WS_ROOT)/build-root/python/virtualenv/lib/python2.7/site-packages
PHONIES=.install.ok .pip-patch.ok .pip-install.ok
.PHONY: $(PHONIES)
test: reset verify-python-path .install.ok
define retest-func
@bash -c "source $(PYTHON_VENV_PATH)/bin/activate && python run_tests.py discover -p test_$(TEST)\"*.py\""
endef
test: reset verify-python-path .install.ok
$(call retest-func)
retest: reset verify-python-path
@bash -c "source $(PYTHON_VENV_PATH)/bin/activate && python run_tests.py discover -p test_$(TEST)\"*.py\""
$(call retest-func)
.PHONY: wipe doc
@@ -53,6 +58,18 @@ doc: verify-python-path
wipe-doc:
@make -C doc wipe BR=$(BR)
cov: wipe-cov reset verify-python-path .install.ok
@lcov --zerocounters --directory $(VPP_TEST_BUILD_DIR)
$(call retest-func)
@mkdir $(BUILD_COV_DIR)
@lcov --capture --directory $(VPP_TEST_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info
@genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html
@echo
@echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html"
wipe-cov: wipe
@rm -rf $(BUILD_COV_DIR)
help:
@echo "Running tests:"
@echo ""
@@ -60,7 +77,7 @@ help:
@echo " test-debug - build and run functional tests (debug build)"
@echo " retest - run functional tests"
@echo " retest-debug - run functional tests (debug build)"
@echo " wipe-test - wipe (temporary) files generated by unit tests"
@echo " test-wipe - wipe (temporary) files generated by unit tests"
@echo ""
@echo "Arguments controlling test runs:"
@echo " V=[0|1|2] - set test verbosity level"
@@ -76,5 +93,9 @@ help:
@echo ""
@echo "Creating test documentation"
@echo " test-doc - generate documentation for test framework"
@echo " wipe-test-doc - wipe documentation for test framework"
@echo " test-wipe-doc - wipe documentation for test framework"
@echo ""
@echo "Creating test code coverage report"
@echo " test-cov - generate code coverage report for test framework"
@echo " test-wipe-cov - wipe code coverage report for test framework"
@echo ""