authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-08-17 15:27:41-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-08-17 15:27:41-07:00
log96a27557e2ef53b8d1d3132f02c83b716c966277
tree9e33d491b1d0249cb546043b8e4d571f1528d5b6
parentd8fb377e2a5caf1ff6132b619a1b46d3b030496b

stage2 test harness: at least build all compare output tests

This should have been removed with an earlier commit that improved the test harness.

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

test/stage2/compare_output.zig-8
......@@ -13,14 +13,6 @@ const linux_riscv64 = std.zig.CrossTarget{
1313};
1414
1515pub fn addCases(ctx: *TestContext) !void {
16 if (std.Target.current.os.tag != .linux or
17 std.Target.current.cpu.arch != .x86_64)
18 {
19 // TODO implement self-hosted PE (.exe file) linking
20 // TODO implement more ZIR so we don't depend on x86_64-linux
21 return;
22 }
23
2416 {
2517 var case = ctx.exe("hello world with updates", linux_x64);
2618