Skip to content

Commit

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

Tracked by #16959
  • Loading branch information
andrewrk committed Aug 25, 2023
1 parent 4512c26 commit d5eb851
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/standalone/shared_library/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test it");
b.default_step = test_step;

if (@import("builtin").os.tag == .windows and
@import("builtin").cpu.arch == .aarch64)
{
// https://github.com/ziglang/zig/issues/16959
return;
}

const optimize: std.builtin.OptimizeMode = .Debug;
const target: std.zig.CrossTarget = .{};
const lib = b.addSharedLibrary(.{
Expand Down

0 comments on commit d5eb851

Please sign in to comment.