diff options
| author | Pavel Verigo <paul.verigo@gmail.com> | 2024-07-23 17:10:36 +0200 |
|---|---|---|
| committer | Pavel Verigo <paul.verigo@gmail.com> | 2024-07-23 17:10:36 +0200 |
| commit | 8fd1f01f2ac6f23d8e383c7dda276c604bdf7e2f (patch) | |
| tree | d6a5b3dfb2fcb7313dd99e6ae56316790cd6740d /lib | |
| parent | d71312d1048d93d5e806a600066426fd2db9b1fb (diff) | |
| download | zig-8fd1f01f2ac6f23d8e383c7dda276c604bdf7e2f.tar.gz zig-8fd1f01f2ac6f23d8e383c7dda276c604bdf7e2f.zip | |
compiler_rt: disable test for stage2_wasm
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/compiler_rt/udivmodei4.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler_rt/udivmodei4.zig b/lib/compiler_rt/udivmodei4.zig index 6bddd78b81..890ced4360 100644 --- a/lib/compiler_rt/udivmodei4.zig +++ b/lib/compiler_rt/udivmodei4.zig @@ -130,6 +130,7 @@ pub fn __umodei4(r_p: [*]u32, u_p: [*]const u32, v_p: [*]const u32, bits: usize) test "__udivei4/__umodei4" { if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; const RndGen = std.Random.DefaultPrng; var rnd = RndGen.init(42); |
