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-10-09 10:07:47 +02:00
|
|
|
tests-y += timestamp-test
|
2020-10-09 16:02:46 +02:00
|
|
|
tests-y += edid-test
|
2020-11-16 15:25:34 +01:00
|
|
|
tests-y += cbmem_console-romstage-test
|
|
|
|
tests-y += cbmem_console-ramstage-test
|
2020-11-12 12:10:51 +01:00
|
|
|
tests-y += list-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
|
2020-10-09 10:07:47 +02:00
|
|
|
imd-test-srcs += src/lib/imd.c
|
|
|
|
|
|
|
|
timestamp-test-srcs += tests/lib/timestamp-test.c
|
|
|
|
timestamp-test-srcs += tests/stubs/timestamp.c
|
|
|
|
timestamp-test-srcs += tests/stubs/console.c
|
|
|
|
timestamp-test-stage := romstage
|
2020-10-09 16:02:46 +02:00
|
|
|
|
|
|
|
edid-test-srcs += tests/lib/edid-test.c
|
|
|
|
edid-test-srcs += src/lib/edid.c
|
|
|
|
edid-test-srcs += tests/stubs/console.c
|
|
|
|
|
2020-11-16 15:25:34 +01:00
|
|
|
cbmem_console-romstage-test-stage := romstage
|
|
|
|
cbmem_console-romstage-test-srcs += tests/lib/cbmem_console-test.c
|
|
|
|
cbmem_console-romstage-test-srcs += tests/stubs/console.c
|
|
|
|
|
|
|
|
cbmem_console-ramstage-test-stage := ramstage
|
|
|
|
cbmem_console-ramstage-test-srcs += tests/lib/cbmem_console-test.c
|
2020-11-12 12:10:51 +01:00
|
|
|
cbmem_console-ramstage-test-srcs += tests/stubs/console.c
|
|
|
|
|
|
|
|
list-test-srcs += tests/lib/list-test.c
|
|
|
|
list-test-srcs += src/lib/list.c
|
|
|
|
|