summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Fagerburg <pfagerburg@google.com>2021-05-11 09:56:48 -0600
committerPaul Fagerburg <pfagerburg@chromium.org>2021-05-19 19:56:02 +0000
commitde6cbac3c4e44de797bc2a4755fb765cf5a49f55 (patch)
treea67d8457e2463e67e5d3d35970f23c650dea6f8a /Makefile
parent12c0542e6fa54a3875c5786d9527bba5ffa8c45c (diff)
downloadcoreboot-de6cbac3c4e44de797bc2a4755fb765cf5a49f55.tar.gz
coreboot-de6cbac3c4e44de797bc2a4755fb765cf5a49f55.tar.bz2
coreboot-de6cbac3c4e44de797bc2a4755fb765cf5a49f55.zip
tests: improve code coverage support
Fix the exclusion path for lcov; it should exclude the directory with source code, not object files. Use the COV environment variable to * control whether we build for coverage or not * select the output directory Add a separate target for generating the report, so we can get a report for all of the tests together or just a single test. Add documentation. Signed-off-by: Paul Fagerburg <pfagerburg@google.com> Change-Id: I2bd2bfdedfab291aabeaa968c10b17e9b61c9c0a Reviewed-on: https://review.coreboot.org/c/coreboot/+/54072 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jakub Czapiga <jacz@semihalf.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e25c081ac899..ea196c961a6c 100644
--- a/Makefile
+++ b/Makefile
@@ -124,8 +124,8 @@ ifneq ($(filter help%, $(MAKECMDGOALS)), )
NOCOMPILE:=1
UNIT_TEST:=1
else
-ifneq ($(filter %-test %-tests, $(MAKECMDGOALS)),)
-ifneq ($(filter-out %-test %-tests, $(MAKECMDGOALS)),)
+ifneq ($(filter %-test %-tests %coverage-report, $(MAKECMDGOALS)),)
+ifneq ($(filter-out %-test %-tests %coverage-report, $(MAKECMDGOALS)),)
$(error Cannot mix unit-tests targets with other targets)
endif
UNIT_TEST:=1