From b572b0b2876e06791685fb34179ea3e3cb1fe4b4 Mon Sep 17 00:00:00 2001 From: Ayaz Hafiz Date: Tue, 9 Aug 2022 09:04:34 -0700 Subject: [PATCH] Turn on abilities tests for gen-wasm Closes #3708 --- crates/compiler/test_gen/src/gen_abilities.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/compiler/test_gen/src/gen_abilities.rs b/crates/compiler/test_gen/src/gen_abilities.rs index 059fdc275ee..5de0957a6b4 100644 --- a/crates/compiler/test_gen/src/gen_abilities.rs +++ b/crates/compiler/test_gen/src/gen_abilities.rs @@ -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; @@ -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!( @@ -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() {