summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTed Logan <tedlogan@fb.com>2026-03-20 01:58:47 +0300
committerAlex Williamson <alex@shazbot.org>2026-03-20 22:52:16 +0300
commit1347a742a1e1b080e2e8d200312ae45b8d6ac859 (patch)
treed5b7a4131a6e575d00d6ff299af8ada14a938f56 /tools
parent56f90177573e334532c0f039684e9c759830027a (diff)
downloadlinux-1347a742a1e1b080e2e8d200312ae45b8d6ac859.tar.xz
vfio: selftests: Build tests on aarch64
Fix vfio selftests on aarch64, allowing native builds on aarch64 hosts. Reported-by: Matt Evans <mattev@meta.com> Closes: https://lore.kernel.org/all/e51b4ff2-13c4-47d4-b781-3dcbd740d274@meta.com/ Fixes: a55d4bbbe644 ("vfio: selftests: only build tests on arm64 and x86_64") Signed-off-by: Ted Logan <tedlogan@fb.com> Reviewed-by: David Matlack <dmatlack@google.com> Link: https://lore.kernel.org/r/20260319-vfio-selftests-aarch64-v2-1-bb2621c24dc4@fb.com Signed-off-by: Alex Williamson <alex@shazbot.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/vfio/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/vfio/Makefile b/tools/testing/selftests/vfio/Makefile
index 8e90e409e91d..0684932d91bf 100644
--- a/tools/testing/selftests/vfio/Makefile
+++ b/tools/testing/selftests/vfio/Makefile
@@ -1,6 +1,6 @@
ARCH ?= $(shell uname -m)
-ifeq (,$(filter $(ARCH),arm64 x86_64))
+ifeq (,$(filter $(ARCH),aarch64 arm64 x86_64))
# Do nothing on unsupported architectures
include ../lib.mk
else