| ... | @@ -1,9 +1,11 @@ | ... | @@ -1,9 +1,11 @@ |
| 1 | const TestContext = @import("../../src-self-hosted/test.zig").TestContext; | 1 | const TestContext = @import("../../src-self-hosted/test.zig").TestContext; |
| 2 | | 2 | |
| 3 | pub fn addCases(ctx: *TestContext) void { | 3 | pub fn addCases(ctx: *TestContext) void { |
| 4 | if (@import("std").Target.current.os.tag != .linux) { | 4 | if (@import("std").Target.current.os.tag != .linux or |
| | 5 | @import("std").Target.current.cpu.arch != .x86_64) |
| | 6 | { |
| 5 | // TODO implement self-hosted PE (.exe file) linking | 7 | // TODO implement self-hosted PE (.exe file) linking |
| 6 | // TODO implement more ZIR so we don't depend on linux | 8 | // TODO implement more ZIR so we don't depend on x86_64-linux |
| 7 | return; | 9 | return; |
| 8 | } | 10 | } |
| 9 | | 11 | |