zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 8ac3ad48c8eeccf400ab8b2014c958fc0256f5b7 (tree)
parent fce6dbb8907c1bfc8da381632276cc3df8f783e3
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Thu, 11 Jun 2026 03:24:06 +0200

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.

Diffstat:
Mtest/tests.zig | 42++++++++++++++++++++----------------------
1 file changed, 20 insertions(+), 22 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -272,17 +272,16 @@ 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, @@ -291,17 +290,16 @@ const module_test_targets = blk: { }, .link_libc = 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, + .os_tag = .linux, + .abi = .musleabihf, + }, + .linkage = .dynamic, + .link_libc = true, + .extra_target = true, + }, .{ .target = .{ .cpu_arch = .arm,