summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJakub Czapiga <jacz@semihalf.com>2021-04-13 16:07:05 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-04-15 07:38:48 +0000
commita4819b3c31b86950de3ccbe848ec50d6f4d3bdb8 (patch)
tree04f4a59b96518040a2b04b496bd603739f3e0655 /Makefile
parentdadcae63c6c407ab8e14a3e1b10119da63d2228c (diff)
downloadcoreboot-a4819b3c31b86950de3ccbe848ec50d6f4d3bdb8.tar.gz
coreboot-a4819b3c31b86950de3ccbe848ec50d6f4d3bdb8.tar.bz2
coreboot-a4819b3c31b86950de3ccbe848ec50d6f4d3bdb8.zip
Makefile: Add unit-tests help and targets list
Add unit-tests targets to help output. Add list-unit-tests target that lists all available unit-tests. Signed-off-by: Jakub Czapiga <jacz@semihalf.com> Change-Id: I464a76cbea1f4afbc3fc772960787952e61b95b9 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52293 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 138897770473..02c6288f15bd 100644
--- a/Makefile
+++ b/Makefile
@@ -114,16 +114,22 @@ NOCOMPILE:=1
endif
ifneq ($(filter %clean lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
NOMKDIR:=1
+UNIT_TEST:=1
endif
endif
-ifneq ($(filter %-test %-tests,$(MAKECMDGOALS)),)
+ifneq ($(filter help%, $(MAKECMDGOALS)), )
+NOCOMPILE:=1
+UNIT_TEST:=1
+else
+ifneq ($(filter %-test %-tests, $(MAKECMDGOALS)),)
ifneq ($(filter-out %-test %-tests, $(MAKECMDGOALS)),)
$(error Cannot mix unit-tests targets with other targets)
endif
UNIT_TEST:=1
NOCOMPILE:=
endif
+endif
$(xcompile): util/xcompile/xcompile
rm -f $@
@@ -141,6 +147,7 @@ include $(TOPLEVEL)/Makefile.inc
include $(TOPLEVEL)/payloads/Makefile.inc
include $(TOPLEVEL)/util/testing/Makefile.inc
-include $(TOPLEVEL)/site-local/Makefile.inc
+include $(TOPLEVEL)/tests/Makefile.inc
real-all:
@echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2
@echo "Please specify a config file or run 'make menuconfig' to" >&2