mbox series

[v2,0/4] kselftest/arm64: Floating point stress test harness

Message ID 20220829154452.824870-1-broonie@kernel.org (mailing list archive)
Headers show
Series kselftest/arm64: Floating point stress test harness | expand

Message

Mark Brown Aug. 29, 2022, 3:44 p.m. UTC
This series has a few small enhancements for the existing standalone
floating point stress tests and then builds on those with a kselftest
integrated program which gives those a very quick spin from within
kselftest, as well as having an option to set a custom timeout to allow
for use with longer soak testing. This makes it much easier to get
thorough testing of the floating point state management logic, rather
than requiring custom setup for coverage of the various vector lengths
in the system as is needed at present.

It might be nice in future to extend this to attach to some or all of
the test programs with ptrace and read/write their registers as another
means of potentially triggering race conditions or corruption but that's
definitely another step.

v2:
 - Rebase onto v6.0-rc3.
 - Announce the results of enumeration before we start everything.

Mark Brown (4):
  kselftest/arm64: Always encourage preemption for za-test
  kselftest/arm64: Count SIGUSR2 deliveries in FP stress tests
  kselftest/arm64: Install signal handlers before output in FP stress
    tests
  kselftest/arm64: kselftest harness for FP stress tests

 tools/testing/selftests/arm64/fp/.gitignore   |   1 +
 tools/testing/selftests/arm64/fp/Makefile     |   5 +-
 .../testing/selftests/arm64/fp/asm-offsets.h  |   1 +
 tools/testing/selftests/arm64/fp/fp-stress.c  | 535 ++++++++++++++++++
 .../testing/selftests/arm64/fp/fpsimd-test.S  |  51 +-
 tools/testing/selftests/arm64/fp/sve-test.S   |  51 +-
 tools/testing/selftests/arm64/fp/za-test.S    |  58 +-
 7 files changed, 641 insertions(+), 61 deletions(-)
 create mode 100644 tools/testing/selftests/arm64/fp/fp-stress.c


base-commit: b90cb1053190353cc30f0fef0ef1f378ccc063c5

Comments

Catalin Marinas Sept. 6, 2022, 5:45 p.m. UTC | #1
On Mon, 29 Aug 2022 16:44:48 +0100, Mark Brown wrote:
> This series has a few small enhancements for the existing standalone
> floating point stress tests and then builds on those with a kselftest
> integrated program which gives those a very quick spin from within
> kselftest, as well as having an option to set a custom timeout to allow
> for use with longer soak testing. This makes it much easier to get
> thorough testing of the floating point state management logic, rather
> than requiring custom setup for coverage of the various vector lengths
> in the system as is needed at present.
> 
> [...]

Applied to arm64 (for-next/kselftest), thanks!

[1/4] kselftest/arm64: Always encourage preemption for za-test
      https://git.kernel.org/arm64/c/9e40e6272353
[2/4] kselftest/arm64: Count SIGUSR2 deliveries in FP stress tests
      https://git.kernel.org/arm64/c/05a5980f7ff5
[3/4] kselftest/arm64: Install signal handlers before output in FP stress tests
      https://git.kernel.org/arm64/c/000aef672bf2
[4/4] kselftest/arm64: kselftest harness for FP stress tests
      https://git.kernel.org/arm64/c/bce4950aa05c