diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-11-10 17:08:11 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-11-10 17:08:11 -0500 |
| commit | 1403748fd8f923ac4b23bb19d02aa44fd739933d (patch) | |
| tree | 4369c33437603752cea26de06739f11e5381fa24 /std | |
| parent | 019f18058bb74816f8754de63a219347597e06da (diff) | |
| download | zig-1403748fd8f923ac4b23bb19d02aa44fd739933d.tar.gz zig-1403748fd8f923ac4b23bb19d02aa44fd739933d.zip | |
disable broken 32 bit windows test
See #537
Diffstat (limited to 'std')
| -rw-r--r-- | std/io_test.zig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/std/io_test.zig b/std/io_test.zig index 14e98bc74e..267b02dfcf 100644 --- a/std/io_test.zig +++ b/std/io_test.zig @@ -5,8 +5,14 @@ const Rand = std.rand.Rand; const assert = std.debug.assert; const mem = std.mem; const os = std.os; +const builtin = @import("builtin"); test "write a file, read it, then delete it" { + if (builtin.os == builtin.Os.windows and builtin.arch == builtin.Arch.i386) { + // TODO get this test passing + // https://github.com/zig-lang/zig/issues/537 + return; + } var data: [1024]u8 = undefined; var rng = Rand.init(1234); rng.fillBytes(data[0..]); |
