diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-08-25 12:49:01 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-09-19 09:37:53 -0700 |
| commit | 660b3e20907ccfc169dd07e25d4a7a13a0551e9f (patch) | |
| tree | 6acf3bc0114180cdd327b8dc315719aa1d5d2c1b /test/behavior | |
| parent | 31ff6e3fc11c490cc72b726ea22042ea344a18a3 (diff) | |
| download | zig-660b3e20907ccfc169dd07e25d4a7a13a0551e9f.tar.gz zig-660b3e20907ccfc169dd07e25d4a7a13a0551e9f.zip | |
langref: disable var args example on aarch64-windows
See tracking issues #14096 and #16961.
Also, any time a test is skipped it should link to the open bug report
for it.
Diffstat (limited to 'test/behavior')
| -rw-r--r-- | test/behavior/var_args.zig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/behavior/var_args.zig b/test/behavior/var_args.zig index df89b4b88c..01732b7f53 100644 --- a/test/behavior/var_args.zig +++ b/test/behavior/var_args.zig @@ -232,7 +232,10 @@ test "unused VaList arg" { // https://github.com/ziglang/zig/issues/14096 return error.SkipZigTest; } - if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows) return error.SkipZigTest; // TODO + if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .windows) { + // https://github.com/ziglang/zig/issues/16961 + return error.SkipZigTest; // TODO + } const S = struct { fn thirdArg(dummy: c_int, ...) callconv(.C) c_int { |
