diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-08-25 12:37:39 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-09-19 09:37:53 -0700 |
| commit | 31ff6e3fc11c490cc72b726ea22042ea344a18a3 (patch) | |
| tree | 325254ef5b80f6cb26836bd9282bd45d289e0dd0 /test | |
| parent | e04bb4c00787e778ac1f7baf63588f1c01b84a81 (diff) | |
| download | zig-31ff6e3fc11c490cc72b726ea22042ea344a18a3.tar.gz zig-31ff6e3fc11c490cc72b726ea22042ea344a18a3.zip | |
disable failing test: standalone.load_dynamic_library on aarch64-windows
Regressed by LLVM 17
Tracked by #16960
Diffstat (limited to 'test')
| -rw-r--r-- | test/standalone/load_dynamic_library/build.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/standalone/load_dynamic_library/build.zig b/test/standalone/load_dynamic_library/build.zig index a711704e46..1244359cf8 100644 --- a/test/standalone/load_dynamic_library/build.zig +++ b/test/standalone/load_dynamic_library/build.zig @@ -10,6 +10,11 @@ pub fn build(b: *std.Build) void { if (builtin.os.tag == .wasi) return; + if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) { + // https://github.com/ziglang/zig/issues/16960 + return; + } + const lib = b.addSharedLibrary(.{ .name = "add", .root_source_file = .{ .path = "add.zig" }, |
