diff options
author | Jakub Czapiga <jacz@semihalf.com> | 2021-04-15 11:39:13 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-04-21 09:18:56 +0000 |
commit | a37c8021a6963d3ea8bf89e33323ed6acadb23f9 (patch) | |
tree | 4011486f77e7f8e90363ae08bc6e934d7d16158a /tests/lib/Makefile.inc | |
parent | 3c20cba28930ff86eb65074fc8cb577873901592 (diff) |
tests: Add lib/rtc-test test case
Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: I2062e0d9dc2018bd6d8a210c8d26f2091e8c03fe
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52414
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 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/lib/Makefile.inc b/tests/lib/Makefile.inc index 4943e06849..c76870bec0 100644 --- a/tests/lib/Makefile.inc +++ b/tests/lib/Makefile.inc @@ -27,6 +27,7 @@ tests-y += uuid-test tests-y += bootmem-test tests-y += dimm_info_util-test tests-y += coreboot_table-test +tests-y += rtc-test string-test-srcs += tests/lib/string-test.c string-test-srcs += src/lib/string.c @@ -139,3 +140,7 @@ 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 + +rtc-test-srcs += tests/lib/rtc-test.c +rtc-test-srcs += src/lib/rtc.c + |