Skip pending test on wasm

This commit is contained in:
Ayaz Hafiz 2022-10-04 14:39:55 -05:00
parent 085c73dffe
commit c2c15d3ee1
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -1268,6 +1268,7 @@ mod hash_immediate {
}
#[test]
#[cfg(not(feature = "gen-wasm"))] // shr not implemented for U128
fn i128() {
assert_evals_to!(
&build_test("-2i128"),
@ -1279,6 +1280,7 @@ mod hash_immediate {
}
#[test]
#[cfg(not(feature = "gen-wasm"))] // shr not implemented for U128
fn u128() {
assert_evals_to!(
&build_test("Num.maxU128 - 1"),