authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-12-11 14:47:20-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-12-11 14:47:20-05:00
loga3a590a32ab8165955583b6ea76f89f19bb21740
tree3d6a626ba0546f585e57dcf502190b1114a9fc5e
parentfd6a36a23509fb956e05f0052b8ab5a80ead3380

self-hosted: workaround for issue #537


1 files changed, 6 insertions(+), 0 deletions(-)

src-self-hosted/main.zig+6
...@@ -1761,6 +1761,12 @@ fn testCanonical(source: []const u8) {...@@ -1761,6 +1761,12 @@ fn testCanonical(source: []const u8) {
1761}1761}
17621762
1763test "zig fmt" {1763test "zig fmt" {
1764 if (builtin.os == builtin.Os.windows and builtin.arch == builtin.Arch.i386) {
1765 // TODO get this test passing
1766 // https://github.com/zig-lang/zig/issues/537
1767 return;
1768 }
1769
1764 testCanonical(1770 testCanonical(
1765 \\extern fn puts(s: &const u8) -> c_int;1771 \\extern fn puts(s: &const u8) -> c_int;
1766 \\1772 \\