Skip to content

Commit

Permalink
Enable compiler-rt tests for wasm32-wasi
Browse files Browse the repository at this point in the history
I think the underlying issue was the same as
#13258 and that has a work-around in
LLVM 19 (see llvm/llvm-project#58557).

Fixes #15325
  • Loading branch information
rootbeer authored and alexrp committed Mar 10, 2025
1 parent 539f3ef commit 8e0a4ca
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions test/tests.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit 8e0a4ca

Please sign in to comment.