From 17315109336a8ae048f98170f557b9abb79568db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 1 Dec 2024 02:15:51 +0100 Subject: [PATCH] test: Add x86_64-linux-(gnux32,muslx32) to module tests. --- test/tests.zig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/test/tests.zig b/test/tests.zig index ac23bac754..e123dc1e2b 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -217,6 +217,14 @@ const test_targets = blk: { }, .link_libc = true, }, + .{ + .target = .{ + .cpu_arch = .x86_64, + .os_tag = .linux, + .abi = .gnux32, + }, + .link_libc = true, + }, .{ .target = .{ .cpu_arch = .x86_64, @@ -225,6 +233,14 @@ const test_targets = blk: { }, .link_libc = true, }, + .{ + .target = .{ + .cpu_arch = .x86_64, + .os_tag = .linux, + .abi = .muslx32, + }, + .link_libc = true, + }, .{ .target = .{ .cpu_arch = .x86_64,