From: Abhishek Dubey Date: Mon, 23 Feb 2026 20:35:11 +0000 (-0500) Subject: selftests/bpf: Enable test for instruction array on arm64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99726ece0c8ada4646f6bc68014b8d5676689d29;p=thirdparty%2Flinux.git selftests/bpf: Enable test for instruction array on arm64 As arm64 JIT now supports instruction array, make sure all relevant tests run on this architecture. Summary: 1/9 PASSED, 0 SKIPPED, 0 FAILED Signed-off-by: Abhishek Dubey Acked-by: Anton Protopopov Link: https://lore.kernel.org/r/20260223203511.118475-1-adubey@linux.ibm.com Signed-off-by: Alexei Starovoitov --- diff --git a/tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c b/tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c index 269870bec9411..93166c2da8e7b 100644 --- a/tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c +++ b/tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c @@ -3,7 +3,7 @@ #include #include -#ifdef __x86_64__ +#if defined(__x86_64__) || defined(__aarch64__) static int map_create(__u32 map_type, __u32 max_entries) { const char *map_name = "insn_array";