zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c4f96ea745ae2aa56ec5cb2c871e5b3d86b04c8f (tree)
parent 52f4e934a963a5497bd5dd9834e6c419cd171ae4
Author: Andrew Kelley <superjoe30@gmail.com>
Date:   Tue, 11 Sep 2018 11:52:16 -0400

disable stage2 tests on all targets

See #1364

Diffstat:
Mbuild.zig | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/build.zig b/build.zig @@ -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,