From 93f48189f18c9e2a74c8385497a31cbec3059a79 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Fri, 7 May 2021 09:45:37 +0200 Subject: [PATCH] test: Enable i386-linux-gnu test This is needed to catch any possible problem with executables linking to 32bit glibc. --- test/tests.zig | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/test/tests.zig b/test/tests.zig index 7cdf83f2cd..8bd1f3528e 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -98,15 +98,14 @@ const test_targets = blk: { }, .link_libc = true, }, - // https://github.com/ziglang/zig/issues/4926 - //TestTarget{ - // .target = .{ - // .cpu_arch = .i386, - // .os_tag = .linux, - // .abi = .gnu, - // }, - // .link_libc = true, - //}, + TestTarget{ + .target = .{ + .cpu_arch = .i386, + .os_tag = .linux, + .abi = .gnu, + }, + .link_libc = true, + }, TestTarget{ .target = .{