Commit 8e0a4ca4b3

Pat Tullmann <pat.github@tullmann.org>
2025-03-09 22:07:06
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
1 parent 539f3ef
Changed files (1)
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"))