Name Date Size #Lines LOC

..--

abi/H--362264

hwprobe/H--555417

mm/H--8247

sigreturn/H--9865

vector/H--986760

MakefileH A D05-Feb-20251.4 KiB5939

READMEH A D16-Oct-2025834 2516

README

1KSelfTest RISC-V
2================
3
4- These tests are riscv specific and so not built or run but just skipped
5  completely when env-variable ARCH is found to be different than 'riscv'.
6
7- Holding true the above, RISC-V KSFT tests can be run within the
8  KSelfTest framework using standard Linux top-level-makefile targets:
9
10      $ make TARGETS=riscv kselftest-clean
11      $ make TARGETS=riscv kselftest
12
13      or
14
15      $ make -C tools/testing/selftests TARGETS=riscv \
16		INSTALL_PATH=<your-installation-path> install
17
18      or, alternatively, only specific riscv/ subtargets can be picked:
19
20      $ make -C tools/testing/selftests TARGETS=riscv RISCV_SUBTARGETS="mm vector" \
21		INSTALL_PATH=<your-installation-path> install
22
23   Further details on building and running KSFT can be found in:
24     Documentation/dev-tools/kselftest.rst
25