Commit 96a27557e2

Andrew Kelley <andrew@ziglang.org>
2020-08-18 00:27:41
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 parent d8fb377
Changed files (1)
test
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);