tests/Makefile.inc: Change assignments to immediate and fix style

Change assignments to be immediate instead of lazy. Add spaces between
variable name and assignment operators to increase readability.

Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: Idf07b5a836b33cd80c3533e582e2a1916a7bd45d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56931
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
This commit is contained in:
Jakub Czapiga 2021-08-09 14:20:28 +02:00 committed by Nick Vaccaro
parent e7f3e6a055
commit eaf5ff3607
1 changed files with 29 additions and 29 deletions

View File

@ -1,34 +1,34 @@
# SPDX-License-Identifier: GPL-2.0-only # SPDX-License-Identifier: GPL-2.0-only
testsrc = $(top)/tests testsrc := $(top)/tests
# Place the build output in one of two places depending on COV, so that code # Place the build output in one of two places depending on COV, so that code
# built with code coverage never mixes with code built without code coverage. # built with code coverage never mixes with code built without code coverage.
ifeq ($(COV),1) ifeq ($(COV),1)
testobj = $(obj)/coverage testobj := $(obj)/coverage
else else
testobj = $(obj)/tests testobj := $(obj)/tests
endif endif
cmockasrc = 3rdparty/cmocka cmockasrc := 3rdparty/cmocka
cmockaobj = $(objutil)/cmocka cmockaobj := $(objutil)/cmocka
coverage_dir = coverage_reports coverage_dir := coverage_reports
CMOCKA_LIB := $(cmockaobj)/src/libcmocka.so CMOCKA_LIB := $(cmockaobj)/src/libcmocka.so
CMAKE:= cmake CMAKE := cmake
OBJCOPY?= objcopy OBJCOPY ?= objcopy
OBJDUMP?= objdump OBJDUMP ?= objdump
TEST_DEFAULT_CONFIG = $(top)/configs/config.emulation_qemu_x86_i440fx TEST_DEFAULT_CONFIG := $(top)/configs/config.emulation_qemu_x86_i440fx
TEST_DOTCONFIG = $(testobj)/.config TEST_DOTCONFIG := $(testobj)/.config
TEST_KCONFIG_AUTOHEADER := $(testobj)/config.src.h TEST_KCONFIG_AUTOHEADER := $(testobj)/config.src.h
TEST_KCONFIG_AUTOCONFIG := $(testobj)/auto.conf TEST_KCONFIG_AUTOCONFIG := $(testobj)/auto.conf
TEST_KCONFIG_DEPENDENCIES := $(testobj)/auto.conf.cmd TEST_KCONFIG_DEPENDENCIES := $(testobj)/auto.conf.cmd
TEST_KCONFIG_SPLITCONFIG := $(testobj)/config/ TEST_KCONFIG_SPLITCONFIG := $(testobj)/config/
TEST_KCONFIG_TRISTATE := $(testobj)/tristate.conf TEST_KCONFIG_TRISTATE := $(testobj)/tristate.conf
TEST_CFLAGS = -include $(src)/include/kconfig.h \ TEST_CFLAGS := -include $(src)/include/kconfig.h \
-include $(src)/commonlib/bsd/include/commonlib/bsd/compiler.h \ -include $(src)/commonlib/bsd/include/commonlib/bsd/compiler.h \
-include $(src)/include/rules.h -include $(src)/include/rules.h
@ -55,7 +55,7 @@ TEST_CFLAGS += -D__TEST__
TEST_CFLAGS += -I$(cmockasrc)/include TEST_CFLAGS += -I$(cmockasrc)/include
# Link against Cmocka # Link against Cmocka
TEST_LDFLAGS = -L$(cmockaobj)/src -lcmocka -Wl,-rpath=$(cmockaobj)/src TEST_LDFLAGS := -L$(cmockaobj)/src -lcmocka -Wl,-rpath=$(cmockaobj)/src
TEST_LDFLAGS += -Wl,--gc-sections TEST_LDFLAGS += -Wl,--gc-sections
# Some memlayout symbols don't work with userspace relocation -- disable it. # Some memlayout symbols don't work with userspace relocation -- disable it.
@ -69,26 +69,26 @@ TEST_LDFLAGS += --coverage
endif endif
# Extra attributes for unit tests, declared per test # Extra attributes for unit tests, declared per test
attributes:= srcs cflags config mocks stage attributes := srcs cflags config mocks stage
stages:= decompressor bootblock romstage smm verstage stages := decompressor bootblock romstage smm verstage
stages+= ramstage rmodule postcar libagesa stages += ramstage rmodule postcar libagesa
alltests:= alltests :=
subdirs:= tests/arch tests/acpi tests/commonlib tests/console tests/cpu subdirs := tests/arch tests/acpi tests/commonlib tests/console tests/cpu
subdirs+= tests/device tests/drivers tests/ec tests/lib tests/mainboard subdirs += tests/device tests/drivers tests/ec tests/lib tests/mainboard
subdirs+= tests/northbridge tests/security tests/soc tests/southbridge subdirs += tests/northbridge tests/security tests/soc tests/southbridge
subdirs+= tests/superio tests/vendorcode subdirs += tests/superio tests/vendorcode
define tests-handler define tests-handler
alltests += $(1)$(2) alltests += $(1)$(2)
$(foreach attribute,$(attributes), $(foreach attribute,$(attributes),
$(eval $(1)$(2)-$(attribute) += $($(2)-$(attribute)))) $(eval $(1)$(2)-$(attribute) += $($(2)-$(attribute))))
$(foreach attribute,$(attributes), $(foreach attribute,$(attributes),
$(eval $(2)-$(attribute):=)) $(eval $(2)-$(attribute) := ))
# Sanity check for stage attribute value # Sanity check for stage attribute value
$(eval $(1)$(2)-stage:=$(if $($(1)$(2)-stage),$($(1)$(2)-stage),ramstage)) $(eval $(1)$(2)-stage := $(if $($(1)$(2)-stage),$($(1)$(2)-stage),ramstage))
$(if $(findstring $($(1)$(2)-stage), $(stages)),, $(if $(findstring $($(1)$(2)-stage), $(stages)),,
$(error Wrong $(1)$(2)-stage value $($(1)$(2)-stage). \ $(error Wrong $(1)$(2)-stage value $($(1)$(2)-stage). \
Check your $(dir $(1)$(2))Makefile.inc)) Check your $(dir $(1)$(2))Makefile.inc))
@ -145,19 +145,19 @@ $($(1)-bin): $($(1)-objs) $(CMOCKA_LIB)
endef endef
$(foreach test, $(alltests), \ $(foreach test, $(alltests), \
$(eval $(test)-srcobjs:=$(addprefix $(testobj)/$(test)/, \ $(eval $(test)-srcobjs := $(addprefix $(testobj)/$(test)/, \
$(patsubst %.c,%.o,$(filter src/%,$($(test)-srcs))))) \ $(patsubst %.c,%.o,$(filter src/%,$($(test)-srcs))))) \
$(eval $(test)-objs:=$(addprefix $(testobj)/$(test)/, \ $(eval $(test)-objs := $(addprefix $(testobj)/$(test)/, \
$(patsubst %.c,%.o,$($(test)-srcs))))) $(patsubst %.c,%.o,$($(test)-srcs)))))
$(foreach test, $(alltests), \ $(foreach test, $(alltests), \
$(eval $(test)-bin:=$(testobj)/$(test)/run)) $(eval $(test)-bin := $(testobj)/$(test)/run))
$(foreach test, $(alltests), \ $(foreach test, $(alltests), \
$(eval $(call TEST_CC_template,$(test)))) $(eval $(call TEST_CC_template,$(test))))
$(foreach test, $(alltests), \ $(foreach test, $(alltests), \
$(eval all-test-objs+=$($(test)-objs))) $(eval all-test-objs += $($(test)-objs)))
$(foreach test, $(alltests), \ $(foreach test, $(alltests), \
$(eval test-bins+=$($(test)-bin))) $(eval test-bins += $($(test)-bin)))
DEPENDENCIES += $(addsuffix .d,$(basename $(all-test-objs))) DEPENDENCIES += $(addsuffix .d,$(basename $(all-test-objs)))
-include $(DEPENDENCIES) -include $(DEPENDENCIES)
@ -176,7 +176,7 @@ $(TEST_DOTCONFIG):
# Don't override default Kconfig variables, since this will affect all # Don't override default Kconfig variables, since this will affect all
# Kconfig targets. Change them only when calling sub-make instead. # Kconfig targets. Change them only when calling sub-make instead.
$(TEST_KCONFIG_AUTOHEADER): TEST_KCONFIG_FLAGS:= DOTCONFIG=$(TEST_DOTCONFIG) \ $(TEST_KCONFIG_AUTOHEADER): TEST_KCONFIG_FLAGS := DOTCONFIG=$(TEST_DOTCONFIG) \
KCONFIG_AUTOHEADER=$(TEST_KCONFIG_AUTOHEADER) \ KCONFIG_AUTOHEADER=$(TEST_KCONFIG_AUTOHEADER) \
KCONFIG_AUTOCONFIG=$(TEST_KCONFIG_AUTOCONFIG) \ KCONFIG_AUTOCONFIG=$(TEST_KCONFIG_AUTOCONFIG) \
KCONFIG_DEPENDENCIES=$(TEST_KCONFIG_DEPENDENCIES) \ KCONFIG_DEPENDENCIES=$(TEST_KCONFIG_DEPENDENCIES) \