|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| abi/ | | 06-Mar-2024 | - | 2,262 | 1,684 |
| bti/ | | 06-Mar-2024 | - | 614 | 415 |
| fp/ | | 06-Mar-2024 | - | 5,808 | 4,095 |
| mte/ | | 06-Mar-2024 | - | 2,562 | 2,035 |
| pauth/ | | 06-Mar-2024 | - | 538 | 363 |
| signal/ | | 06-Mar-2024 | - | 3,265 | 2,029 |
| tags/ | | 06-Mar-2024 | - | 56 | 40 |
| Makefile | D | 06-Mar-2024 | 1.4 KiB | 60 | 40 |
| README | D | 06-Mar-2024 | 879 | 26 | 17 |
README
1KSelfTest ARM64
2===============
3
4- These tests are arm64 specific and so not built or run but just skipped
5 completely when env-variable ARCH is found to be different than 'arm64'
6 and `uname -m` reports other than 'aarch64'.
7
8- Holding true the above, ARM64 KSFT tests can be run within the KSelfTest
9 framework using standard Linux top-level-makefile targets:
10
11 $ make TARGETS=arm64 kselftest-clean
12 $ make TARGETS=arm64 kselftest
13
14 or
15
16 $ make -C tools/testing/selftests TARGETS=arm64 \
17 INSTALL_PATH=<your-installation-path> install
18
19 or, alternatively, only specific arm64/ subtargets can be picked:
20
21 $ make -C tools/testing/selftests TARGETS=arm64 ARM64_SUBTARGETS="tags signal" \
22 INSTALL_PATH=<your-installation-path> install
23
24 Further details on building and running KFST can be found in:
25 Documentation/dev-tools/kselftest.rst
26