commit e6b4e1a5d0bb7aa8360060ca88cc10a7edc7df5e (tree)
parent ae86c0f529d720ed4cae9e5f99064d6dba635144
Author: Andrew Kelley <andrew@ziglang.org>
Date: Thu, 23 Oct 2025 21:47:45 -0700
disable self-hosted wasm test-cases
Tracked by #25684
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/test/src/Cases.zig b/test/src/Cases.zig
@@ -370,6 +370,10 @@ fn addFromDirInner(
const resolved_target = b.resolveTargetQuery(target_query);
const target = &resolved_target.result;
for (backends) |backend| {
+ if (backend == .selfhosted and target.cpu.arch == .wasm32) {
+ // https://github.com/ziglang/zig/issues/25684
+ continue;
+ }
if (backend == .selfhosted and
target.cpu.arch != .aarch64 and target.cpu.arch != .wasm32 and target.cpu.arch != .x86_64 and target.cpu.arch != .spirv64)
{