From 8ac3ad48c8eeccf400ab8b2014c958fc0256f5b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 11 Jun 2026 03:24:06 +0200 Subject: [PATCH] test: re-enable module tests for dynamic arm-linux-musleabi(hf) Dynamic armeb-linux-musleabi(hf) still fails for unclear reasons, so it remains disabled. --- test/tests.zig | 42 ++++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/test/tests.zig b/test/tests.zig index 9136d1434f11e13087d163a31058e6ae5f5ba895..e49abae93f3fd6432393d907b22e9865694cecd9 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -272,36 +272,34 @@ const module_test_targets = blk: { }, .link_libc = true, }, - // Crashes in weird ways when applying relocations. - // .{ - // .target = .{ - // .cpu_arch = .arm, - // .os_tag = .linux, - // .abi = .musleabi, - // }, - // .linkage = .dynamic, - // .link_libc = true, - // .extra_target = true, - // }, + .{ + .target = .{ + .cpu_arch = .arm, + .os_tag = .linux, + .abi = .musleabi, + }, + .linkage = .dynamic, + .link_libc = true, + .extra_target = true, + }, + .{ + .target = .{ + .cpu_arch = .arm, + .os_tag = .linux, + .abi = .musleabihf, + }, + .link_libc = true, + }, .{ .target = .{ .cpu_arch = .arm, .os_tag = .linux, .abi = .musleabihf, }, + .linkage = .dynamic, .link_libc = true, + .extra_target = true, }, - // Crashes in weird ways when applying relocations. - // .{ - // .target = .{ - // .cpu_arch = .arm, - // .os_tag = .linux, - // .abi = .musleabihf, - // }, - // .linkage = .dynamic, - // .link_libc = true, - // .extra_target = true, - // }, .{ .target = .{ .cpu_arch = .arm, -- 2.54.0