mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2026-04-13 06:11:37 +01:00
Added unit tests for various string operations using SBI unit test framework. Signed-off-by: Chen Pei <cp0613@linux.alibaba.com> Reviewed-by: Anup Patel <anup@brainfault.org> Link: https://lore.kernel.org/r/20260306094425.1918-2-cp0613@linux.alibaba.com Signed-off-by: Anup Patel <anup@brainfault.org>
27 lines
1.0 KiB
Makefile
27 lines
1.0 KiB
Makefile
libsbi-objs-$(CONFIG_SBIUNIT) += tests/sbi_unit_test.o
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/sbi_unit_tests.carray.o
|
|
|
|
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += bitmap_test_suite
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/sbi_bitmap_test.o
|
|
|
|
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += console_test_suite
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/sbi_console_test.o
|
|
|
|
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += atomic_test_suite
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/riscv_atomic_test.o
|
|
|
|
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += locks_test_suite
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/riscv_locks_test.o
|
|
|
|
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += math_test_suite
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/sbi_math_test.o
|
|
|
|
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += ecall_test_suite
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/sbi_ecall_test.o
|
|
|
|
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += bitops_test_suite
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/sbi_bitops_test.o
|
|
|
|
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += string_test_suite
|
|
libsbi-objs-$(CONFIG_SBIUNIT) += tests/sbi_string_test.o
|