Skip to content

Commit

Permalink
disable failing test: standalone.load_dynamic_library on aarch64-windows
Browse files Browse the repository at this point in the history
Regressed by LLVM 17

Tracked by #16960
  • Loading branch information
andrewrk committed Sep 19, 2023
1 parent e04bb4c commit 31ff6e3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/standalone/load_dynamic_library/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down

0 comments on commit 31ff6e3

Please sign in to comment.