commit 93f48189f18c9e2a74c8385497a31cbec3059a79 (tree)
parent 679876ba7266e6a9eac73705280a39158808bd52
Author: LemonBoy <thatlemon@gmail.com>
Date: Fri, 7 May 2021 09:45:37 +0200
test: Enable i386-linux-gnu test
This is needed to catch any possible problem with executables linking to
32bit glibc.
Diffstat:
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git 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 = .{