blob: 10caf0a1e1dcac3c3e93ab206c1a28b1047993a9 [file] [log] [blame]
Jan Dabrosef1c9682020-03-28 00:15:03 +01001# SPDX-License-Identifier: GPL-2.0-only
Jan Dabrosef1c9682020-03-28 00:15:03 +01002
Paul Fagerburgde6cbac2021-05-11 09:56:48 -06003# Place the build output in one of two places depending on COV, so that code
4# built with code coverage never mixes with code built without code coverage.
5ifeq ($(COV),1)
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +02006testobj := $(obj)/coverage
Paul Fagerburgde6cbac2021-05-11 09:56:48 -06007else
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +02008testobj := $(obj)/tests
Paul Fagerburgde6cbac2021-05-11 09:56:48 -06009endif
10
Jakub Czapiga9ebc6c12022-04-14 13:56:02 +020011include $(top)/tests/Makefile.common
Julius Werner84446e62021-02-12 17:37:27 -080012
Paul Fagerburgde6cbac2021-05-11 09:56:48 -060013# Enable code coverage if COV=1
14ifeq ($(COV),1)
15TEST_CFLAGS += --coverage
16TEST_LDFLAGS += --coverage
17endif
18
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020019stages := decompressor bootblock romstage smm verstage
20stages += ramstage rmodule postcar libagesa
Jan Dabrosef1c9682020-03-28 00:15:03 +010021
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020022alltests :=
23subdirs := tests/arch tests/acpi tests/commonlib tests/console tests/cpu
24subdirs += tests/device tests/drivers tests/ec tests/lib tests/mainboard
25subdirs += tests/northbridge tests/security tests/soc tests/southbridge
26subdirs += tests/superio tests/vendorcode
Jan Dabrosef1c9682020-03-28 00:15:03 +010027
28define tests-handler
29alltests += $(1)$(2)
30$(foreach attribute,$(attributes),
31 $(eval $(1)$(2)-$(attribute) += $($(2)-$(attribute))))
32$(foreach attribute,$(attributes),
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020033 $(eval $(2)-$(attribute) := ))
Jan Dabrosef1c9682020-03-28 00:15:03 +010034
35# Sanity check for stage attribute value
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020036$(eval $(1)$(2)-stage := $(if $($(1)$(2)-stage),$($(1)$(2)-stage),ramstage))
Jan Dabrosef1c9682020-03-28 00:15:03 +010037$(if $(findstring $($(1)$(2)-stage), $(stages)),,
38 $(error Wrong $(1)$(2)-stage value $($(1)$(2)-stage). \
39 Check your $(dir $(1)$(2))Makefile.inc))
40endef
41
42$(call add-special-class, tests)
43$(call evaluate_subdirs)
44
Jan Dabrosef1c9682020-03-28 00:15:03 +010045$(foreach test, $(alltests), \
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020046 $(eval $(test)-srcobjs := $(addprefix $(testobj)/$(test)/, \
Patrick Georgice55ca22021-06-09 18:37:42 +020047 $(patsubst %.c,%.o,$(filter src/%,$($(test)-srcs))))) \
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020048 $(eval $(test)-objs := $(addprefix $(testobj)/$(test)/, \
Jan Dabrosef1c9682020-03-28 00:15:03 +010049 $(patsubst %.c,%.o,$($(test)-srcs)))))
50$(foreach test, $(alltests), \
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020051 $(eval $(test)-bin := $(testobj)/$(test)/run))
Jan Dabrosef1c9682020-03-28 00:15:03 +010052$(foreach test, $(alltests), \
53 $(eval $(call TEST_CC_template,$(test))))
54
55$(foreach test, $(alltests), \
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020056 $(eval all-test-objs += $($(test)-objs)))
Jan Dabrosef1c9682020-03-28 00:15:03 +010057$(foreach test, $(alltests), \
Jakub Czapigaeaf5ff32021-08-09 14:20:28 +020058 $(eval test-bins += $($(test)-bin)))
Jan Dabrosef1c9682020-03-28 00:15:03 +010059
60DEPENDENCIES += $(addsuffix .d,$(basename $(all-test-objs)))
61-include $(DEPENDENCIES)
62
Jan Dabrosef1c9682020-03-28 00:15:03 +010063.PHONY: $(alltests) $(addprefix clean-,$(alltests))
64.PHONY: unit-tests build-unit-tests run-unit-tests clean-unit-tests
65
Jakub Czapiga4d9694e2021-10-07 09:06:42 +000066# %g in CMOCKA_XML_FILE will be replaced with "__TEST_NAME__(<test-group-name>)"
67# by macro cb_run_group_tests(), which should be used for running tests.
68# __TEST_NAME__ contains test name including path e.g. tests_lib_rtc-test
Patrick Georgia0a198f2020-05-27 10:59:09 +020069ifeq ($(JUNIT_OUTPUT),y)
70$(alltests): export CMOCKA_MESSAGE_OUTPUT=xml
Jakub Czapiga4d9694e2021-10-07 09:06:42 +000071$(alltests): export CMOCKA_XML_FILE=$(testobj)/junit-%g.xml
Patrick Georgia0a198f2020-05-27 10:59:09 +020072endif
73
Jan Dabrosef1c9682020-03-28 00:15:03 +010074$(alltests): $$($$(@)-bin)
Jakub Czapiga4d9694e2021-10-07 09:06:42 +000075 rm -f $(testobj)/junit-$(subst /,_,$(patsubst $(testobj)/%/,%,$(dir $^)))\(*\).xml
76 rm -f $(testobj)/$(subst /,_,$^).failed
Raul E Rangel940953e2021-07-23 16:43:18 -060077 -$^ || echo failed > $(testobj)/$(subst /,_,$^).failed
Jan Dabrosef1c9682020-03-28 00:15:03 +010078
Paul Fagerburgde6cbac2021-05-11 09:56:48 -060079# Build a code coverage report by collecting all the gcov files into a single
80# report. If COV is not set, this might be a user error, and they're trying
81# to generate a coverage report without first having built and run the code
82# with code coverage. So instead of silently correcting it by adding COV=1,
83# let's flag it to the user so they can be sure they're doing the thing they
84# want to do.
Paul Fagerburg045fbf12021-04-16 11:36:25 -060085
Paul Fagerburgde6cbac2021-05-11 09:56:48 -060086.PHONY: coverage-report clean-coverage-report
87
88ifeq ($(COV),1)
89coverage-report:
90 lcov -o $(testobj)/tests.info -c -d $(testobj) --exclude '$(testsrc)/*'
91 genhtml -q -o $(testobj)/$(coverage_dir) -t "coreboot unit tests" \
Paul Fagerburg045fbf12021-04-16 11:36:25 -060092 -s $(testobj)/tests.info
93
Paul Fagerburgde6cbac2021-05-11 09:56:48 -060094clean-coverage-report:
95 rm -Rf $(testobj)/$(coverage_dir)
96else
97coverage-report:
98 COV=1 V=$(V) $(MAKE) coverage-report
99
100clean-coverage-report:
101 COV=1 V=$(V) $(MAKE) clean-coverage-report
102endif
103
Jan Dabrosef1c9682020-03-28 00:15:03 +0100104unit-tests: build-unit-tests run-unit-tests
105
106build-unit-tests: $(test-bins)
107
108run-unit-tests: $(alltests)
Patrick Georgi1b35ec92020-05-27 11:39:32 +0200109 if [ `find $(testobj) -name '*.failed' | wc -l` -gt 0 ]; then \
110 echo "**********************"; \
111 echo " TESTS FAILED"; \
112 echo "**********************"; \
113 exit 1; \
114 else \
115 echo "**********************"; \
116 echo " ALL TESTS PASSED"; \
117 echo "**********************"; \
118 exit 0; \
119 fi
Jan Dabrosef1c9682020-03-28 00:15:03 +0100120
121$(addprefix clean-,$(alltests)): clean-%:
Paul Fagerburgde6cbac2021-05-11 09:56:48 -0600122 rm -rf $(testobj)/$*
Jan Dabrosef1c9682020-03-28 00:15:03 +0100123
124clean-unit-tests:
125 rm -rf $(testobj)
Jakub Czapigaa4819b32021-04-13 16:07:05 +0200126
127list-unit-tests:
128 @echo "unit-tests:"
129 for t in $(sort $(alltests)); do \
130 echo " $$t"; \
131 done
132
133help-unit-tests help::
134 @echo '*** coreboot unit-tests targets ***'
Paul Fagerburgde6cbac2021-05-11 09:56:48 -0600135 @echo ' Use "COV=1 make [target]" to enable code coverage for unit tests'
Paul Fagerburg045fbf12021-04-16 11:36:25 -0600136 @echo ' unit-tests - Run all unit-tests from tests/'
137 @echo ' clean-unit-tests - Remove unit-tests build artifacts'
138 @echo ' list-unit-tests - List all unit-tests'
139 @echo ' <unit-test> - Build and run single unit-test'
140 @echo ' clean-<unit-test> - Remove single unit-test build artifacts'
Paul Fagerburgde6cbac2021-05-11 09:56:48 -0600141 @echo ' coverage-report - Generate a code coverage report'
142 @echo ' clean-coverage-report - Remove the code coverage report'
Jakub Czapigaa4819b32021-04-13 16:07:05 +0200143 @echo