authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-04-03 18:36:13-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-04-03 18:36:13-04:00
loga2cad9a3d9a2d7b578628c10bf0fa69c09623347
tree61bead628bdc9a6544f0e87d0b1610ce6dc2708a
parent7beea47178f311ce7bb1e5f9bad4d3c8c14caec5
signaturelock-open Commit is signed but in an unrecognized format.

add issue links to disabled test cases


1 files changed, 20 insertions(+), 2 deletions(-)

test/tests.zig+20-2
......@@ -89,6 +89,15 @@ const test_targets = blk: {
8989 },
9090 .link_libc = true,
9191 },
92 // https://github.com/ziglang/zig/issues/4926
93 //TestTarget{
94 // .target = .{
95 // .cpu_arch = .i386,
96 // .os_tag = .linux,
97 // .abi = .gnu,
98 // },
99 // .link_libc = true,
100 //},
92101
93102 TestTarget{
94103 .target = .{
......@@ -127,7 +136,7 @@ const test_targets = blk: {
127136 }) catch unreachable,
128137 .link_libc = true,
129138 },
130 // TODO https://github.com/ziglang/zig/issues/3287
139 // https://github.com/ziglang/zig/issues/3287
131140 //TestTarget{
132141 // .target = CrossTarget.parse(.{
133142 // .arch_os_abi = "arm-linux-gnueabihf",
......@@ -151,6 +160,15 @@ const test_targets = blk: {
151160 },
152161 .link_libc = true,
153162 },
163 // https://github.com/ziglang/zig/issues/4927
164 //TestTarget{
165 // .target = .{
166 // .cpu_arch = .mipsel,
167 // .os_tag = .linux,
168 // .abi = .gnu,
169 // },
170 // .link_libc = true,
171 //},
154172
155173 TestTarget{
156174 .target = .{
......@@ -185,7 +203,7 @@ const test_targets = blk: {
185203 .os_tag = .macosx,
186204 .abi = .gnu,
187205 },
188 // TODO https://github.com/ziglang/zig/issues/3295
206 // https://github.com/ziglang/zig/issues/3295
189207 .disable_native = true,
190208 },
191209