disable failing test: standalone.shared_library on aarch64-windows

Regressed by LLVM 17

Tracked by #16959
This commit is contained in:
Andrew Kelley 2023-08-25 12:32:00 -07:00
parent e36ec537f2
commit e04bb4c007

View File

@ -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(.{