linux/tools/testing/selftests/arm64
Wang Yan a52d6c7160 selftests/arm64: fix spelling errors in comments
Fix two spelling mistakes in arm64 selftest comments:
  - "whcih" -> "which" (arm64/gcs/libc-gcs.c)
  - "resutls" -> "results" (arm64/pauth/pac.c)

Signed-off-by: Wang Yan <wangyan01@kylinos.cn>
Signed-off-by: Will Deacon <will@kernel.org>
2026-07-02 11:44:43 +01:00
..
abi kselftest/arm64: Add 2025 dpISA coverage to hwcaps 2026-05-19 13:58:33 +01:00
bti kselftest/arm64: Remove extra blank line 2025-09-08 16:01:21 +01:00
fp kselftest/arm64: Raise default number of loops in fp-pidbench 2026-01-28 13:09:30 +00:00
gcs selftests/arm64: fix spelling errors in comments 2026-07-02 11:44:43 +01:00
mte kselftest/arm64: Add missing file in .gitignore 2026-01-26 14:29:06 +00:00
pauth selftests/arm64: fix spelling errors in comments 2026-07-02 11:44:43 +01:00
signal kselftest/arm64: Add tests for POR_EL0 save/reset/restore 2026-05-19 11:54:03 +01:00
tags selftests: complete kselftest include centralization 2025-11-27 14:24:31 -08:00
Makefile kselftest/arm64: Support FORCE_TARGETS 2026-01-05 21:16:46 +00:00
README

KSelfTest ARM64
===============

- These tests are arm64 specific and so not built or run but just skipped
  completely when env-variable ARCH is found to be different than 'arm64'
  and `uname -m` reports other than 'aarch64'.

- Holding true the above, ARM64 KSFT tests can be run within the KSelfTest
  framework using standard Linux top-level-makefile targets:

      $ make TARGETS=arm64 kselftest-clean
      $ make TARGETS=arm64 kselftest

      or

      $ make -C tools/testing/selftests TARGETS=arm64 \
		INSTALL_PATH=<your-installation-path> install

      or, alternatively, only specific arm64/ subtargets can be picked:

      $ make -C tools/testing/selftests TARGETS=arm64 ARM64_SUBTARGETS="tags signal" \
		INSTALL_PATH=<your-installation-path> install

   Further details on building and running KFST can be found in:
     Documentation/dev-tools/kselftest.rst