forked from Mirrors/opensbi

This patch adds unit tests for verifying the sbi_ecall version, impid handling, and extension registration functions. The tests ensure that the extension registration and unregistration work as expected. Signed-off-by: Akshay Behl <akshaybehl231@gmail.com> Reviewed-by: Anup Patel <anup@brainfault.org>
21 lines
830 B
Makefile
21 lines
830 B
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
|