From 96a27557e2ef53b8d1d3132f02c83b716c966277 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 17 Aug 2020 15:27:41 -0700 Subject: [PATCH] stage2 test harness: at least build all compare output tests This should have been removed with an earlier commit that improved the test harness. --- test/stage2/compare_output.zig | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/stage2/compare_output.zig b/test/stage2/compare_output.zig index 4979f1b2bc..83dfddb3e8 100644 --- a/test/stage2/compare_output.zig +++ b/test/stage2/compare_output.zig @@ -13,14 +13,6 @@ const linux_riscv64 = std.zig.CrossTarget{ }; pub fn addCases(ctx: *TestContext) !void { - if (std.Target.current.os.tag != .linux or - std.Target.current.cpu.arch != .x86_64) - { - // TODO implement self-hosted PE (.exe file) linking - // TODO implement more ZIR so we don't depend on x86_64-linux - return; - } - { var case = ctx.exe("hello world with updates", linux_x64);