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: {...@@ -89,6 +89,15 @@ const test_targets = blk: {
89 },89 },
90 .link_libc = true,90 .link_libc = true,
91 },91 },
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
93 TestTarget{102 TestTarget{
94 .target = .{103 .target = .{
...@@ -127,7 +136,7 @@ const test_targets = blk: {...@@ -127,7 +136,7 @@ const test_targets = blk: {
127 }) catch unreachable,136 }) catch unreachable,
128 .link_libc = true,137 .link_libc = true,
129 },138 },
130 // TODO https://github.com/ziglang/zig/issues/3287139 // https://github.com/ziglang/zig/issues/3287
131 //TestTarget{140 //TestTarget{
132 // .target = CrossTarget.parse(.{141 // .target = CrossTarget.parse(.{
133 // .arch_os_abi = "arm-linux-gnueabihf",142 // .arch_os_abi = "arm-linux-gnueabihf",
...@@ -151,6 +160,15 @@ const test_targets = blk: {...@@ -151,6 +160,15 @@ const test_targets = blk: {
151 },160 },
152 .link_libc = true,161 .link_libc = true,
153 },162 },
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
155 TestTarget{173 TestTarget{
156 .target = .{174 .target = .{
...@@ -185,7 +203,7 @@ const test_targets = blk: {...@@ -185,7 +203,7 @@ const test_targets = blk: {
185 .os_tag = .macosx,203 .os_tag = .macosx,
186 .abi = .gnu,204 .abi = .gnu,
187 },205 },
188 // TODO https://github.com/ziglang/zig/issues/3295206 // https://github.com/ziglang/zig/issues/3295
189 .disable_native = true,207 .disable_native = true,
190 },208 },
191209