diff --git a/build.rs b/build.rs index 5f9231f3b5..a6e2b7d8bc 100644 --- a/build.rs +++ b/build.rs @@ -206,18 +206,6 @@ fn ignore(testsuite: &str, testname: &str, strategy: &str) -> bool { ("reference_types", "table_copy_on_imported_tables") => return false, ("reference_types", _) => return true, - ("misc_testsuite", "export_large_signature") - | ("spec_testsuite", "call") - | ("spec_testsuite", "func") - | ("multi_value", "call") - | ("multi_value", "func") => { - // FIXME These involves functions with very large stack frames that Cranelift currently - // cannot compile using the fastcall (Windows) calling convention. - // See https://github.com/bytecodealliance/wasmtime/pull/1216. - #[cfg(windows)] - return true; - } - _ => {} }, _ => panic!("unrecognized strategy"),