diff options
author | Jakub Czapiga <jacz@semihalf.com> | 2021-04-06 09:42:02 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-04-18 20:43:05 +0000 |
commit | 5d884837f4cbe67c25081222f93220b5437e846f (patch) | |
tree | 0e66903dd7543e59a4ee53c00d84a980f5c22ec5 /tests/lib/Makefile.inc | |
parent | bcc7aaa70ceb1cf72965bc9b7e0cfca42513cd05 (diff) |
tests: Add lib/coreboot_table-test test case
Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: I4d7d9ca43316bf514bb5ebd8909f441bcfa20eba
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52159
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Diffstat (limited to 'tests/lib/Makefile.inc')
-rw-r--r-- | tests/lib/Makefile.inc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/lib/Makefile.inc b/tests/lib/Makefile.inc index ee2bf5ab82..4943e06849 100644 --- a/tests/lib/Makefile.inc +++ b/tests/lib/Makefile.inc @@ -26,6 +26,7 @@ tests-y += memrange-test tests-y += uuid-test tests-y += bootmem-test tests-y += dimm_info_util-test +tests-y += coreboot_table-test string-test-srcs += tests/lib/string-test.c string-test-srcs += src/lib/string.c @@ -129,3 +130,12 @@ dimm_info_util-test-srcs += tests/lib/dimm_info_util-test.c dimm_info_util-test-srcs += src/lib/dimm_info_util.c dimm_info_util-test-srcs += tests/stubs/console.c +coreboot_table-test-srcs += tests/lib/coreboot_table-test.c +coreboot_table-test-srcs += tests/stubs/console.c +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 |