diff options
| author | LemonBoy <thatlemon@gmail.com> | 2021-05-07 09:45:37 +0200 |
|---|---|---|
| committer | LemonBoy <thatlemon@gmail.com> | 2021-05-11 12:33:48 +0200 |
| commit | 93f48189f18c9e2a74c8385497a31cbec3059a79 (patch) | |
| tree | 4092abceac880f799ccca6745628f43dcf12ace5 /test/tests.zig | |
| parent | 679876ba7266e6a9eac73705280a39158808bd52 (diff) | |
| download | zig-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.zig | 17 |
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 = .{ |
