Commit 6e6d0eb690

Andrew Kelley <andrew@ziglang.org>
2020-04-28 00:48:03
disable stage2 zir tests on not-yet-supported OS's
1 parent 2bae942
Changed files (1)
test
stage2
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;
     }