From 6e6d0eb690fa58572be7ae556723bb5818206955 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 27 Apr 2020 18:48:03 -0400 Subject: [PATCH] disable stage2 zir tests on not-yet-supported OS's --- test/stage2/zir.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/stage2/zir.zig b/test/stage2/zir.zig index b30c443788..14771134b4 100644 --- a/test/stage2/zir.zig +++ b/test/stage2/zir.zig @@ -1,8 +1,9 @@ const TestContext = @import("../../src-self-hosted/test.zig").TestContext; pub fn addCases(ctx: *TestContext) void { - if (@import("std").Target.current.os.tag == .windows) { + if (@import("std").Target.current.os.tag != .linux) { // TODO implement self-hosted PE (.exe file) linking + // TODO implement more ZIR so we don't depend on linux return; }