diff options
author | Jakub Czapiga <jacz@semihalf.com> | 2021-02-15 09:54:03 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-26 07:29:57 +0000 |
commit | 7a18721cc75ee52cac6f96eec2d359bae72a51e1 (patch) | |
tree | 9ca94039e0c8d9daccf6be1c856ff54d801bd607 /tests/lib/Makefile.inc | |
parent | e8118acfbee788f1c45319970a6a10dfc8f30491 (diff) |
tests: Add lib/malloc-test test case
Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: Ic6b10ec382cc807772689e852bad300c75da1fe2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50715
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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/Makefile.inc b/tests/lib/Makefile.inc index 1640ce0f88..d31608c3d0 100644 --- a/tests/lib/Makefile.inc +++ b/tests/lib/Makefile.inc @@ -18,6 +18,7 @@ tests-y += memset-test tests-y += memcmp-test tests-y += memchr-test tests-y += memcpy-test +tests-y += malloc-test string-test-srcs += tests/lib/string-test.c string-test-srcs += src/lib/string.c @@ -91,3 +92,6 @@ memchr-test-srcs += src/lib/memchr.c memcpy-test-srcs += tests/lib/memcpy-test.c +malloc-test-srcs += tests/lib/malloc-test.c +malloc-test-srcs += tests/stubs/console.c + |