Skip to content

Commit

Permalink
disable stage2 tests on all targets
Browse files Browse the repository at this point in the history
See #1364
  • Loading branch information
andrewrk committed Sep 11, 2018
1 parent 52f4e93 commit c4f96ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c4f96ea

Please sign in to comment.