Skip to content

Commit

Permalink
Turn on abilities tests for gen-wasm
Browse files Browse the repository at this point in the history
Closes #3708
  • Loading branch information
ayazhafiz committed Aug 9, 2022
1 parent 4cb5de4 commit b572b0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/compiler/test_gen/src/gen_abilities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ mod decode_immediate {
}

#[test]
#[cfg(any(feature = "gen-llvm"))]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn dec() {
use roc_std::RocDec;

Expand All @@ -899,7 +899,7 @@ mod decode_immediate {
}

#[test]
#[cfg(any(feature = "gen-llvm"))]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn decode_list_of_strings() {
assert_evals_to!(
indoc!(
Expand All @@ -919,7 +919,7 @@ fn decode_list_of_strings() {

#[test]
#[cfg(all(
any(feature = "gen-llvm"), // currently fails on gen-wasm
any(feature = "gen-llvm", feature = "gen-wasm"),
not(feature = "gen-llvm-wasm") // hits a stack limit in wasm3
))]
fn encode_then_decode_list_of_strings() {
Expand Down

0 comments on commit b572b0b

Please sign in to comment.