diff options
| author | LemonBoy <thatlemon@gmail.com> | 2021-06-06 11:12:41 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-06-06 18:04:16 -0700 |
| commit | 616c82e446625478179b873b37b05fddfc53ed01 (patch) | |
| tree | c24d636c8bbae5a384826695746a7df4e628bc22 /test/tests.zig | |
| parent | e44b55b07213a4907d31e573afc3090a749c89de (diff) | |
| download | zig-616c82e446625478179b873b37b05fddfc53ed01.tar.gz zig-616c82e446625478179b873b37b05fddfc53ed01.zip | |
Revert "tests: disable i386-linux-gnu -lc target due to CI failures"
This reverts commit 97a2f4e7ae9c52c595841347bb0b26572b180dcf.
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 4a7cf9c02f..63b851e90b 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/8930 - //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 = .{ |
