summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJakub Czapiga <jacz@semihalf.com>2021-08-09 15:51:37 +0200
committerNick Vaccaro <nvaccaro@google.com>2021-08-13 18:05:55 +0000
commitd0bd012b5e2462c8c654749da36b62512867e0ec (patch)
tree184258016958d1eb846408824c9f1f28bbf33064 /tests
parent9bf716ede076fe881e2c989e7cd47b5c46e26060 (diff)
downloadcoreboot-d0bd012b5e2462c8c654749da36b62512867e0ec.tar.gz
coreboot-d0bd012b5e2462c8c654749da36b62512867e0ec.tar.bz2
coreboot-d0bd012b5e2462c8c654749da36b62512867e0ec.zip
tests/Makefile.inc: Add missing include paths to TEST_CFLAGS
Add missing paths to common tests cflags and remove these paths from individual tests configuration. Signed-off-by: Jakub Czapiga <jacz@semihalf.com> Change-Id: I13cb336195bfb06b861d7f403822f06bec8a40aa Reviewed-on: https://review.coreboot.org/c/coreboot/+/56933 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.inc5
-rw-r--r--tests/lib/Makefile.inc4
2 files changed, 3 insertions, 6 deletions
diff --git a/tests/Makefile.inc b/tests/Makefile.inc
index f3a708af111d..f45638da3ff0 100644
--- a/tests/Makefile.inc
+++ b/tests/Makefile.inc
@@ -35,8 +35,9 @@ TEST_CFLAGS := -include $(src)/include/kconfig.h \
# Include generic test mock headers, before original ones
TEST_CFLAGS += -I$(testsrc)/include/mocks -I$(testsrc)/include
-TEST_CFLAGS += -I$(src)/include -I$(src)/commonlib/include \
- -I$(src)/commonlib/bsd/include -I$(src)/arch/x86/include
+TEST_CFLAGS += -I$(src) -I$(src)/include -I$(src)/commonlib/include \
+ -I$(src)/commonlib/bsd/include -I$(src)/arch/x86/include \
+ -I$(top)/3rdparty/vboot/firmware/include
# Note: This is intentionally just a subset of the warnings in the toplevel
# Makefile.inc. We don't need to be as strict with test code, and things like
diff --git a/tests/lib/Makefile.inc b/tests/lib/Makefile.inc
index 028db73addd4..45cef1b4ca84 100644
--- a/tests/lib/Makefile.inc
+++ b/tests/lib/Makefile.inc
@@ -73,7 +73,6 @@ fmap-test-srcs += tests/stubs/console.c
fmap-test-srcs += src/lib/boot_device.c
fmap-test-srcs += src/commonlib/region.c
fmap-test-cflags += -I tests/include/tests/lib/fmap
-fmap-test-cflags += -I 3rdparty/vboot/firmware/include
imd_cbmem-ramstage-test-stage := ramstage
imd_cbmem-ramstage-test-srcs += tests/lib/imd_cbmem-test.c
@@ -141,7 +140,6 @@ coreboot_table-test-srcs += src/lib/compute_ip_checksum.c
coreboot_table-test-srcs += src/lib/coreboot_table.c
coreboot_table-test-srcs += src/lib/imd_cbmem.c
coreboot_table-test-srcs += src/lib/imd.c
-coreboot_table-test-cflags += -I src -I 3rdparty/vboot/firmware/include
coreboot_table-test-cflags += -I tests/include/tests/lib/fmap
coreboot_table-test-mocks += cbmem_top_chipset
@@ -175,8 +173,6 @@ cbmem_stage_cache-test-srcs += tests/stubs/console.c
cbmem_stage_cache-test-srcs += src/lib/cbmem_stage_cache.c
cbmem_stage_cache-test-srcs += src/lib/imd_cbmem.c
cbmem_stage_cache-test-srcs += src/lib/imd.c
-cbmem_stage_cache-test-cflags += -I 3rdparty/vboot/firmware/include
-cbmem_stage_cache-test-cflags += -I $(src)/commonlib/include
cbmem_stage_cache-test-config += CONFIG_CBMEM_STAGE_CACHE=1
libgcc-test-srcs += tests/lib/libgcc-test.c