wasm: Enable some tests that are working now

This commit is contained in:
Brian Carroll 2022-07-29 19:14:56 +02:00
parent ef47ced57a
commit ef1e86cca6
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
2 changed files with 10 additions and 8 deletions

View file

@ -1343,7 +1343,7 @@ fn linked_list_is_empty_2() {
} }
#[test] #[test]
#[cfg(any(feature = "gen-llvm"))] #[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn linked_list_singleton() { fn linked_list_singleton() {
// verifies only that valid llvm is produced // verifies only that valid llvm is produced
assert_evals_to!( assert_evals_to!(
@ -1479,7 +1479,10 @@ fn rbtree_insert() {
} }
#[test] #[test]
#[cfg(all(any(feature = "gen-llvm"), not(feature = "gen-llvm-wasm")))] #[cfg(all(
any(feature = "gen-llvm", feature = "gen-wasm"),
not(feature = "gen-llvm-wasm")
))]
fn rbtree_balance_3() { fn rbtree_balance_3() {
assert_evals_to!( assert_evals_to!(
indoc!( indoc!(
@ -1497,9 +1500,8 @@ fn rbtree_balance_3() {
balance 0 Empty balance 0 Empty
"# "#
), ),
false, 0,
*const i64, usize // treat pointer as usize for null check
|x: *const i64| x.is_null()
); );
} }

View file

@ -477,7 +477,7 @@ fn nested_pattern_match() {
} }
#[test] #[test]
#[cfg(any(feature = "gen-llvm"))] #[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn if_guard_vanilla() { fn if_guard_vanilla() {
assert_evals_to!( assert_evals_to!(
indoc!( indoc!(
@ -1363,7 +1363,7 @@ fn issue_2365_monomorphize_tag_with_non_empty_ext_var() {
} }
#[test] #[test]
#[cfg(any(feature = "gen-llvm"))] #[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn issue_2365_monomorphize_tag_with_non_empty_ext_var_wrapped() { fn issue_2365_monomorphize_tag_with_non_empty_ext_var_wrapped() {
assert_evals_to!( assert_evals_to!(
indoc!( indoc!(
@ -1392,7 +1392,7 @@ fn issue_2365_monomorphize_tag_with_non_empty_ext_var_wrapped() {
} }
#[test] #[test]
#[cfg(any(feature = "gen-llvm"))] #[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn issue_2365_monomorphize_tag_with_non_empty_ext_var_wrapped_nested() { fn issue_2365_monomorphize_tag_with_non_empty_ext_var_wrapped_nested() {
assert_evals_to!( assert_evals_to!(
indoc!( indoc!(