aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2021-05-07 09:45:37 +0200
committerLemonBoy <thatlemon@gmail.com>2021-05-11 12:33:48 +0200
commit93f48189f18c9e2a74c8385497a31cbec3059a79 (patch)
tree4092abceac880f799ccca6745628f43dcf12ace5 /test/tests.zig
parent679876ba7266e6a9eac73705280a39158808bd52 (diff)
downloadzig-93f48189f18c9e2a74c8385497a31cbec3059a79.tar.gz
zig-93f48189f18c9e2a74c8385497a31cbec3059a79.zip
test: Enable i386-linux-gnu test
This is needed to catch any possible problem with executables linking to 32bit glibc.
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig17
1 files 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 = .{