Disable 128 bit test for wasm

This commit is contained in:
Kiryl Dziamura 2023-04-19 19:00:40 +02:00
parent e8b1d3fa24
commit 2633e7ed8f
No known key found for this signature in database
GPG key ID: FB539501A4561ACF

View file

@ -4044,7 +4044,7 @@ fn num_abs_int_min_overflow() {
}
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
#[cfg(any(feature = "gen-llvm"))]
#[should_panic(expected = r#"Roc failed with message: "integer subtraction overflowed!"#)]
fn num_abs_large_bits_min_overflow() {
assert_evals_to!(r#"Num.absDiff Num.minI128 0"#, 0, i128);