5664bc8cf9
Implement unit tests for lib/hexstrtobin module. Signed-off-by: Anna Karas <aka@semihalf.com> Change-Id: Id929b07936ea180a798309e5acb1dacf1b396e32 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43088 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
14 lines
401 B
Makefile
14 lines
401 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
tests-y += string-test
|
|
tests-y += b64_decode-test
|
|
tests-y += hexstrtobin-test
|
|
|
|
string-test-srcs += tests/lib/string-test.c
|
|
string-test-srcs += src/lib/string.c
|
|
|
|
b64_decode-test-srcs += tests/lib/b64_decode-test.c
|
|
b64_decode-test-srcs += src/lib/b64_decode.c
|
|
|
|
hexstrtobin-test-srcs += tests/lib/hexstrtobin-test.c
|
|
hexstrtobin-test-srcs += src/lib/hexstrtobin.c
|