diff options
author | Mark Brown <broonie@kernel.org> | 2022-04-27 19:19:51 +0100 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2022-04-28 18:00:54 +0100 |
commit | a59f7a7f76407da78c21c42afe6d57bd885caa53 (patch) | |
tree | 03df58d11a59ad9ae83ef2996b0f1cc6e4d933ba /tools/testing/selftests/arm64/fp/Makefile | |
parent | f82efe5b9a3ae75a557097a074b0125032e76a83 (diff) | |
download | linux-stable-a59f7a7f76407da78c21c42afe6d57bd885caa53.tar.gz linux-stable-a59f7a7f76407da78c21c42afe6d57bd885caa53.tar.bz2 linux-stable-a59f7a7f76407da78c21c42afe6d57bd885caa53.zip |
selftests/arm64: Use TEST_GEN_PROGS_EXTENDED in the FP Makefile
The kselftest lib.mk provides a default all target which builds additional
programs from TEST_GEN_PROGS_EXTENDED, use that rather than using
TEST_PROGS_EXTENDED which is for programs that don't need to be built like
shell scripts. Leave fpsimd-stress and sve-stress there since they are
scripts.
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20220427181954.357975-2-broonie@kernel.org
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'tools/testing/selftests/arm64/fp/Makefile')
-rw-r--r-- | tools/testing/selftests/arm64/fp/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/testing/selftests/arm64/fp/Makefile b/tools/testing/selftests/arm64/fp/Makefile index 95e707e32247..a0b8cc59947e 100644 --- a/tools/testing/selftests/arm64/fp/Makefile +++ b/tools/testing/selftests/arm64/fp/Makefile @@ -2,14 +2,13 @@ CFLAGS += -I../../../../../usr/include/ TEST_GEN_PROGS := sve-ptrace sve-probe-vls vec-syscfg za-fork za-ptrace -TEST_PROGS_EXTENDED := fp-pidbench fpsimd-test fpsimd-stress \ +TEST_GEN_PROGS_EXTENDED := fp-pidbench fpsimd-test \ rdvl-sme rdvl-sve \ - sve-test sve-stress \ - ssve-test ssve-stress \ - za-test za-stress \ + sve-test \ + ssve-test \ + za-test \ vlset - -all: $(TEST_GEN_PROGS) $(TEST_PROGS_EXTENDED) +TEST_PROGS_EXTENDED := fpsimd-stress sve-stress ssve-stress za-stress # Build with nolibc to avoid effects due to libc's clone() support fp-pidbench: fp-pidbench.S asm-utils.o |