aboutsummaryrefslogtreecommitdiff
path: root/test/standalone.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-11-14 16:07:52 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-11-14 16:07:52 -0700
commita50ad04e8542d63262dabaede5fff52e41157d07 (patch)
treefa28eeee4ac00c9d03e2acd6cf1003eec98847df /test/standalone.zig
parent5d7efa6d82997d80b89e3454ac2b924c3a5a0c87 (diff)
downloadzig-a50ad04e8542d63262dabaede5fff52e41157d07.tar.gz
zig-a50ad04e8542d63262dabaede5fff52e41157d07.zip
disable failing test on aarch64-macos
Diffstat (limited to 'test/standalone.zig')
-rw-r--r--test/standalone.zig6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/standalone.zig b/test/standalone.zig
index c945fe6bb6..d235e491ef 100644
--- a/test/standalone.zig
+++ b/test/standalone.zig
@@ -38,7 +38,11 @@ pub fn addCases(cases: *tests.StandaloneContext) void {
cases.addBuildFile("test/standalone/issue_9812/build.zig", .{});
}
cases.addBuildFile("test/standalone/issue_11595/build.zig", .{});
- if (builtin.os.tag != .wasi) {
+
+ if (builtin.os.tag != .wasi and
+ // https://github.com/ziglang/zig/issues/13550
+ (builtin.os.tag != .macos or builtin.cpu.arch != .aarch64))
+ {
cases.addBuildFile("test/standalone/load_dynamic_library/build.zig", .{});
}