You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/behavior/var_args.zig
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,7 @@ test "simple variadic function" {
106
106
}
107
107
if (builtin.cpu.arch==.x86_64andbuiltin.os.tag==.windows) returnerror.SkipZigTest; // TODO
108
108
if (builtin.cpu.arch==.s390xandbuiltin.zig_backend==.stage2_llvm) returnerror.SkipZigTest; // https://github.com/ziglang/zig/issues/21350
109
+
if (builtin.cpu.arch.isSPARC() andbuiltin.zig_backend==.stage2_llvm) returnerror.SkipZigTest; // https://github.com/ziglang/zig/issues/23718
109
110
110
111
constS=struct {
111
112
fnsimple(...) callconv(.c) c_int {
@@ -200,6 +201,7 @@ test "variadic functions" {
200
201
}
201
202
if (builtin.cpu.arch==.x86_64andbuiltin.os.tag==.windows) returnerror.SkipZigTest; // TODO
202
203
if (builtin.cpu.arch==.s390xandbuiltin.zig_backend==.stage2_llvm) returnerror.SkipZigTest; // https://github.com/ziglang/zig/issues/21350
204
+
if (builtin.cpu.arch.isSPARC() andbuiltin.zig_backend==.stage2_llvm) returnerror.SkipZigTest; // https://github.com/ziglang/zig/issues/23718
if (builtin.cpu.arch==.x86_64andbuiltin.os.tag==.windows) returnerror.SkipZigTest; // TODO
247
249
if (builtin.cpu.arch==.s390xandbuiltin.zig_backend==.stage2_llvm) returnerror.SkipZigTest; // https://github.com/ziglang/zig/issues/21350
250
+
if (builtin.cpu.arch.isSPARC() andbuiltin.zig_backend==.stage2_llvm) returnerror.SkipZigTest; // https://github.com/ziglang/zig/issues/23718
248
251
249
252
constS=struct {
250
253
fnadd(count: c_int, ...) callconv(.c) c_int {
@@ -282,6 +285,7 @@ test "unused VaList arg" {
282
285
returnerror.SkipZigTest; // TODO
283
286
}
284
287
if (builtin.cpu.arch==.s390xandbuiltin.zig_backend==.stage2_llvm) returnerror.SkipZigTest; // https://github.com/ziglang/zig/issues/21350
288
+
if (builtin.cpu.arch.isSPARC() andbuiltin.zig_backend==.stage2_llvm) returnerror.SkipZigTest; // https://github.com/ziglang/zig/issues/23718
0 commit comments