diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-09-11 11:52:16 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-09-11 11:52:16 -0400 |
| commit | c4f96ea745ae2aa56ec5cb2c871e5b3d86b04c8f (patch) | |
| tree | 70b6771fe62525573aad2800736ecdfef53a1442 | |
| parent | 52f4e934a963a5497bd5dd9834e6c419cd171ae4 (diff) | |
| download | zig-c4f96ea745ae2aa56ec5cb2c871e5b3d86b04c8f.tar.gz zig-c4f96ea745ae2aa56ec5cb2c871e5b3d86b04c8f.zip | |
disable stage2 tests on all targets
See #1364
| -rw-r--r-- | build.zig | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -76,7 +76,11 @@ pub fn build(b: *Builder) !void { const test_stage2_step = b.step("test-stage2", "Run the stage2 compiler tests"); test_stage2_step.dependOn(&test_stage2.step); - test_step.dependOn(test_stage2_step); + + // TODO see https://github.com/ziglang/zig/issues/1364 + if (false) { + test_step.dependOn(test_stage2_step); + } const all_modes = []builtin.Mode{ builtin.Mode.Debug, |
