| ... | @@ -163,7 +163,7 @@ test "coerce reference to var arg" { | ... | @@ -163,7 +163,7 @@ test "coerce reference to var arg" { |
| 163 | // https://github.com/ziglang/zig/issues/14096 | 163 | // https://github.com/ziglang/zig/issues/14096 |
| 164 | return error.SkipZigTest; | 164 | return error.SkipZigTest; |
| 165 | } | 165 | } |
| 166 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows and builtin.zig_backend != .stage2_x86_64) return error.SkipZigTest; // TODO | 166 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // TODO |
| 167 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 | 167 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 |
| 168 | | 168 | |
| 169 | const S = struct { | 169 | const S = struct { |
| ... | @@ -195,7 +195,7 @@ test "variadic functions" { | ... | @@ -195,7 +195,7 @@ test "variadic functions" { |
| 195 | // https://github.com/ziglang/zig/issues/14096 | 195 | // https://github.com/ziglang/zig/issues/14096 |
| 196 | return error.SkipZigTest; | 196 | return error.SkipZigTest; |
| 197 | } | 197 | } |
| 198 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows and builtin.zig_backend != .stage2_x86_64) return error.SkipZigTest; // TODO | 198 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // TODO |
| 199 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 | 199 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 |
| 200 | if (builtin.cpu.arch.isSPARC() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23718 | 200 | if (builtin.cpu.arch.isSPARC() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23718 |
| 201 | if (builtin.cpu.arch.isRISCV() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25064 | 201 | if (builtin.cpu.arch.isRISCV() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25064 |
| ... | @@ -248,7 +248,7 @@ test "copy VaList" { | ... | @@ -248,7 +248,7 @@ test "copy VaList" { |
| 248 | // https://github.com/ziglang/zig/issues/14096 | 248 | // https://github.com/ziglang/zig/issues/14096 |
| 249 | return error.SkipZigTest; | 249 | return error.SkipZigTest; |
| 250 | } | 250 | } |
| 251 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows and builtin.zig_backend != .stage2_x86_64) return error.SkipZigTest; // TODO | 251 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // TODO |
| 252 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 | 252 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 |
| 253 | if (builtin.cpu.arch.isSPARC() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23718 | 253 | if (builtin.cpu.arch.isSPARC() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23718 |
| 254 | if (builtin.cpu.arch.isRISCV() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25064 | 254 | if (builtin.cpu.arch.isRISCV() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25064 |
| ... | @@ -283,7 +283,7 @@ test "unused VaList arg" { | ... | @@ -283,7 +283,7 @@ test "unused VaList arg" { |
| 283 | // https://github.com/ziglang/zig/issues/14096 | 283 | // https://github.com/ziglang/zig/issues/14096 |
| 284 | return error.SkipZigTest; | 284 | return error.SkipZigTest; |
| 285 | } | 285 | } |
| 286 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows and builtin.zig_backend != .stage2_x86_64) { | 286 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows and builtin.zig_backend == .stage2_llvm) { |
| 287 | // https://github.com/ziglang/zig/issues/16961 | 287 | // https://github.com/ziglang/zig/issues/16961 |
| 288 | return error.SkipZigTest; // TODO | 288 | return error.SkipZigTest; // TODO |
| 289 | } | 289 | } |