| ... | ... | @@ -106,6 +106,7 @@ test "simple variadic function" { |
| 106 | 106 | } |
| 107 | 107 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows) return error.SkipZigTest; // TODO |
| 108 | 108 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 |
| 109 | if (builtin.cpu.arch.isSPARC() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23718 |
| 109 | 110 | |
| 110 | 111 | const S = struct { |
| 111 | 112 | fn simple(...) callconv(.c) c_int { |
| ... | ... | @@ -200,6 +201,7 @@ test "variadic functions" { |
| 200 | 201 | } |
| 201 | 202 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows) return error.SkipZigTest; // TODO |
| 202 | 203 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 |
| 204 | if (builtin.cpu.arch.isSPARC() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23718 |
| 203 | 205 | |
| 204 | 206 | const S = struct { |
| 205 | 207 | fn printf(list_ptr: *std.ArrayList(u8), format: [*:0]const u8, ...) callconv(.c) void { |
| ... | ... | @@ -245,6 +247,7 @@ test "copy VaList" { |
| 245 | 247 | } |
| 246 | 248 | if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows) return error.SkipZigTest; // TODO |
| 247 | 249 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 |
| 250 | if (builtin.cpu.arch.isSPARC() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23718 |
| 248 | 251 | |
| 249 | 252 | const S = struct { |
| 250 | 253 | fn add(count: c_int, ...) callconv(.c) c_int { |
| ... | ... | @@ -282,6 +285,7 @@ test "unused VaList arg" { |
| 282 | 285 | return error.SkipZigTest; // TODO |
| 283 | 286 | } |
| 284 | 287 | if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21350 |
| 288 | if (builtin.cpu.arch.isSPARC() and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23718 |
| 285 | 289 | |
| 286 | 290 | const S = struct { |
| 287 | 291 | fn thirdArg(dummy: c_int, ...) callconv(.c) c_int { |