aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-04-03 18:36:13 -0400
committerAndrew Kelley <andrew@ziglang.org>2020-04-03 18:36:13 -0400
commita2cad9a3d9a2d7b578628c10bf0fa69c09623347 (patch)
tree61bead628bdc9a6544f0e87d0b1610ce6dc2708a /test/tests.zig
parent7beea47178f311ce7bb1e5f9bad4d3c8c14caec5 (diff)
downloadzig-a2cad9a3d9a2d7b578628c10bf0fa69c09623347.tar.gz
zig-a2cad9a3d9a2d7b578628c10bf0fa69c09623347.zip
add issue links to disabled test cases
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig22
1 files changed, 20 insertions, 2 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 6861270792..8ad5803184 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -89,6 +89,15 @@ 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 = .{
@@ -127,7 +136,7 @@ const test_targets = blk: {
}) catch unreachable,
.link_libc = true,
},
- // TODO https://github.com/ziglang/zig/issues/3287
+ // https://github.com/ziglang/zig/issues/3287
//TestTarget{
// .target = CrossTarget.parse(.{
// .arch_os_abi = "arm-linux-gnueabihf",
@@ -151,6 +160,15 @@ const test_targets = blk: {
},
.link_libc = true,
},
+ // https://github.com/ziglang/zig/issues/4927
+ //TestTarget{
+ // .target = .{
+ // .cpu_arch = .mipsel,
+ // .os_tag = .linux,
+ // .abi = .gnu,
+ // },
+ // .link_libc = true,
+ //},
TestTarget{
.target = .{
@@ -185,7 +203,7 @@ const test_targets = blk: {
.os_tag = .macosx,
.abi = .gnu,
},
- // TODO https://github.com/ziglang/zig/issues/3295
+ // https://github.com/ziglang/zig/issues/3295
.disable_native = true,
},