2020-05-06 16:01:27 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2020-04-20 15:19:45 +02:00
|
|
|
|
|
|
|
tests-y += string-test
|
2020-06-08 15:16:19 +02:00
|
|
|
tests-y += b64_decode-test
|
2020-07-02 10:09:47 +02:00
|
|
|
tests-y += hexstrtobin-test
|
2020-10-05 10:44:46 +02:00
|
|
|
tests-y += imd-test
|
2020-04-20 15:19:45 +02:00
|
|
|
|
|
|
|
string-test-srcs += tests/lib/string-test.c
|
|
|
|
string-test-srcs += src/lib/string.c
|
2020-06-08 15:16:19 +02:00
|
|
|
|
|
|
|
b64_decode-test-srcs += tests/lib/b64_decode-test.c
|
2020-07-07 16:38:27 +02:00
|
|
|
b64_decode-test-srcs += tests/stubs/console.c
|
2020-06-08 15:16:19 +02:00
|
|
|
b64_decode-test-srcs += src/lib/b64_decode.c
|
2020-07-02 10:09:47 +02:00
|
|
|
|
|
|
|
hexstrtobin-test-srcs += tests/lib/hexstrtobin-test.c
|
|
|
|
hexstrtobin-test-srcs += src/lib/hexstrtobin.c
|
2020-10-05 10:44:46 +02:00
|
|
|
|
|
|
|
imd-test-srcs += tests/lib/imd-test.c
|
|
|
|
imd-test-srcs += tests/stubs/console.c
|
|
|
|
imd-test-srcs += src/lib/imd.c
|