Linux Kernel Selftest development
 help / color / mirror / Atom feed
* [PATCH] selftest/vDSO: Fix cross build for the random tests
@ 2024-08-30 14:06 Mark Brown
  2024-08-30 15:30 ` Jason A. Donenfeld
  2024-08-30 15:34 ` Jason A. Donenfeld
  0 siblings, 2 replies; 8+ messages in thread
From: Mark Brown @ 2024-08-30 14:06 UTC (permalink / raw)
  To: Shuah Khan, Jason A. Donenfeld; +Cc: linux-kselftest, linux-kernel, Mark Brown

Unlike the check for the standalone x86 test the check for building the
vDSO getrandom and chacaha tests looks at the architecture for the host
rather than the architecture for the target when deciding if they should
be built. Since the chacha test includes some assembler code this means
that cross building with x86 as either the target or host is broken. Use
a check for ARCH instead.

Fixes: 4920a2590e91 ("selftests/vDSO: add tests for vgetrandom")
Signed-off-by: Mark Brown <broonie@kernel.org>
---
The x86_64 build is still broken for me because nothing installs
tools/arch/x86_64/vdso/vgetrandom-chacha.S (I beleive it's supposed to
be copied from ./arch/x86/entry/vdso/vgetrandom-chacha.S but I don't see
how?) but this at least fixes all the other architectures.
---
 tools/testing/selftests/vDSO/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/vDSO/Makefile b/tools/testing/selftests/vDSO/Makefile
index e21e78aae24d..7fb59310718c 100644
--- a/tools/testing/selftests/vDSO/Makefile
+++ b/tools/testing/selftests/vDSO/Makefile
@@ -10,7 +10,7 @@ ifeq ($(ARCH),$(filter $(ARCH),x86 x86_64))
 TEST_GEN_PROGS += vdso_standalone_test_x86
 endif
 TEST_GEN_PROGS += vdso_test_correctness
-ifeq ($(uname_M),x86_64)
+ifeq ($(ARCH),$(filter $(ARCH),x86_64))
 TEST_GEN_PROGS += vdso_test_getrandom
 TEST_GEN_PROGS += vdso_test_chacha
 endif

---
base-commit: 985bf40edf4343dcb04c33f58b40b4a85c1776d4
change-id: 20240830-vdso-chacha-build-8d3789bf695c

Best regards,
-- 
Mark Brown <broonie@kernel.org>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-08-30 16:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-30 14:06 [PATCH] selftest/vDSO: Fix cross build for the random tests Mark Brown
2024-08-30 15:30 ` Jason A. Donenfeld
2024-08-30 15:42   ` Mark Brown
2024-08-30 15:58     ` Jason A. Donenfeld
2024-08-30 15:34 ` Jason A. Donenfeld
2024-08-30 15:43   ` Mark Brown
2024-08-30 15:54     ` [PATCH v2] selftests: vDSO: fix cross build for getrandom and chacha tests Jason A. Donenfeld
2024-08-30 16:05       ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox