summaryrefslogtreecommitdiffstats
path: root/tests/lib/Makefile.inc
diff options
context:
space:
mode:
authorAnna Karas <aka@semihalf.com>2020-06-08 15:16:19 +0200
committerJulius Werner <jwerner@chromium.org>2020-07-06 23:47:40 +0000
commit072a9b96eb2036718db1212c9f35b9cfe72e3f78 (patch)
tree3224606eda9cc9e6a65577f59d00add5a2564f83 /tests/lib/Makefile.inc
parent907ddc3e07240b17e19e2ab83c4a68e0eca9a32f (diff)
downloadcoreboot-072a9b96eb2036718db1212c9f35b9cfe72e3f78.tar.gz
coreboot-072a9b96eb2036718db1212c9f35b9cfe72e3f78.tar.bz2
coreboot-072a9b96eb2036718db1212c9f35b9cfe72e3f78.zip
tests: Add lib/b64_decode-test test case
Implement unit tests for lib/b64_decode module. Signed-off-by: Anna Karas <aka@semihalf.com> Change-Id: Id5fe9272e30eaff3d086a95241b3819101089c2b Reviewed-on: https://review.coreboot.org/c/coreboot/+/42313 Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'tests/lib/Makefile.inc')
-rw-r--r--tests/lib/Makefile.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/Makefile.inc b/tests/lib/Makefile.inc
index c49031764402..5d47fea887f4 100644
--- a/tests/lib/Makefile.inc
+++ b/tests/lib/Makefile.inc
@@ -1,6 +1,10 @@
# SPDX-License-Identifier: GPL-2.0-only
tests-y += string-test
+tests-y += b64_decode-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