tests: Add lib/memcpy-test test case

Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: I00464ec2db23867712cd2efd7f6cad92e3ee361a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50799
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
This commit is contained in:
Jakub Czapiga
2021-02-16 13:27:17 +01:00
committed by Patrick Georgi
parent 168b38bbb3
commit eb4bb6f563
2 changed files with 199 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ tests-y += stack-test
tests-y += memset-test
tests-y += memcmp-test
tests-y += memchr-test
tests-y += memcpy-test
string-test-srcs += tests/lib/string-test.c
string-test-srcs += src/lib/string.c
@@ -88,3 +89,5 @@ memcmp-test-srcs += tests/lib/memcmp-test.c
memchr-test-srcs += tests/lib/memchr-test.c
memchr-test-srcs += src/lib/memchr.c
memcpy-test-srcs += tests/lib/memcpy-test.c