README 879 B

12345678910111213141516171819202122232425
  1. KSelfTest ARM64
  2. ===============
  3. - These tests are arm64 specific and so not built or run but just skipped
  4. completely when env-variable ARCH is found to be different than 'arm64'
  5. and `uname -m` reports other than 'aarch64'.
  6. - Holding true the above, ARM64 KSFT tests can be run within the KSelfTest
  7. framework using standard Linux top-level-makefile targets:
  8. $ make TARGETS=arm64 kselftest-clean
  9. $ make TARGETS=arm64 kselftest
  10. or
  11. $ make -C tools/testing/selftests TARGETS=arm64 \
  12. INSTALL_PATH=<your-installation-path> install
  13. or, alternatively, only specific arm64/ subtargets can be picked:
  14. $ make -C tools/testing/selftests TARGETS=arm64 ARM64_SUBTARGETS="tags signal" \
  15. INSTALL_PATH=<your-installation-path> install
  16. Further details on building and running KFST can be found in:
  17. Documentation/dev-tools/kselftest.rst