diff options
author | Jakub Czapiga <jacz@semihalf.com> | 2021-02-19 10:09:42 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-01 08:31:11 +0000 |
commit | f5e636ccdb6b7f9cbbdf185298b9de11b733b5f2 (patch) | |
tree | 33ad97023a2c48e9c18bc01e0d54e912ad369454 /tests/lib/Makefile.inc | |
parent | 3f7bb7dc4457f0513fcdbc6e8760d94ea063367a (diff) |
tests: Add lib/memmove-test test case
Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: Ic9b68eb0fa85bbc3f66d57cdcb329073b26bea57
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50902
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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lib/Makefile.inc b/tests/lib/Makefile.inc index d31608c3d0..0f978e7d1d 100644 --- a/tests/lib/Makefile.inc +++ b/tests/lib/Makefile.inc @@ -19,6 +19,7 @@ tests-y += memcmp-test tests-y += memchr-test tests-y += memcpy-test tests-y += malloc-test +tests-y += memmove-test string-test-srcs += tests/lib/string-test.c string-test-srcs += src/lib/string.c @@ -95,3 +96,5 @@ memcpy-test-srcs += tests/lib/memcpy-test.c malloc-test-srcs += tests/lib/malloc-test.c malloc-test-srcs += tests/stubs/console.c +memmove-test-srcs += tests/lib/memmove-test.c + |