From 54f9cd255f17a2c212967ca6fc1dfe2d7330b13a Mon Sep 17 00:00:00 2001 From: Peter Huene Date: Thu, 21 May 2020 15:53:47 -0700 Subject: [PATCH] Re-enable tests that were excluded due to the previous limitation. --- build.rs | 12 ------------ 1 file changed, 12 deletions(-) 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"),