From 300fe46d29b00c8ec49a38be4ced541e8b6d1c61 Mon Sep 17 00:00:00 2001 From: Jeffrey Charles Date: Fri, 23 Feb 2024 17:01:34 -0500 Subject: [PATCH] Run additional misc tests with Winch (#7992) --- build.rs | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/build.rs b/build.rs index 9999da5015..5c80b11e42 100644 --- a/build.rs +++ b/build.rs @@ -206,10 +206,19 @@ fn ignore(testsuite: &str, testname: &str, strategy: &str) -> bool { // Ignore some tests for when testing Winch. if strategy == "Winch" { if testsuite == "misc_testsuite" { - // The misc/call_indirect is fully supported by Winch. - if testname != "call_indirect" { - return true; - } + let denylist = [ + "externref_id_function", + "func_400_params", + "int_to_float_splat", + "issue6562", + "many_table_gets_lead_to_gc", + "mutable_externref_globals", + "no_mixup_stack_maps", + "no_panic", + "simple_ref_is_null", + "table_grow_with_funcref", + ]; + return denylist.contains(&testname); } if testsuite == "spec_testsuite" { let denylist = [