From 76642c9e0ec4f475532bbd01111abeac82c204d0 Mon Sep 17 00:00:00 2001 From: Pat Tullmann Date: Sun, 9 Mar 2025 14:07:06 -0700 Subject: [PATCH] Enable compiler-rt tests for wasm32-wasi I think the underlying issue was the same as https://github.com/ziglang/zig/issues/13258 and that has a work-around in LLVM 19 (see https://github.com/llvm/llvm-project/issues/58557). Fixes #15325 --- test/tests.zig | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/tests.zig b/test/tests.zig index 7ef5a33a03da..28c6fbc67e40 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -1430,14 +1430,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt")) continue; - // TODO get compiler-rt tests passing for wasm32-wasi - // currently causes "LLVM ERROR: Unable to expand fixed point multiplication." - if (target.cpu.arch == .wasm32 and target.os.tag == .wasi and - mem.eql(u8, options.name, "compiler-rt")) - { - continue; - } - // TODO get universal-libc tests passing for other self-hosted backends. if (target.cpu.arch != .x86_64 and test_target.use_llvm == false and mem.eql(u8, options.name, "universal-libc"))