From 390446d6ef620ace16f05a97bae3ad7344c14d7f Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Wed, 9 Oct 2024 08:58:32 -0700 Subject: [PATCH] ignore tail calls tests on s390x, since it didn't implement them in this release --- tests/all/traps.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/all/traps.rs b/tests/all/traps.rs index 8601b6af416d..810615e71231 100644 --- a/tests/all/traps.rs +++ b/tests/all/traps.rs @@ -1681,6 +1681,7 @@ fn async_stack_size_ignored_if_disabled() -> Result<()> { } #[test] +#[cfg(not(target_arch = "s390x"))] fn tail_call_to_imported_function() -> Result<()> { let mut config = Config::new(); config.wasm_tail_call(true); @@ -1711,6 +1712,7 @@ fn tail_call_to_imported_function() -> Result<()> { } #[test] +#[cfg(not(target_arch = "s390x"))] fn tail_call_to_imported_function_in_start_function() -> Result<()> { let mut config = Config::new(); config.wasm_tail_call(true); @@ -1740,6 +1742,7 @@ fn tail_call_to_imported_function_in_start_function() -> Result<()> { } #[test] +#[cfg(not(target_arch = "s390x"))] fn return_call_ref_to_imported_function() -> Result<()> { let mut config = Config::new(); config.wasm_tail_call(true); @@ -1770,6 +1773,7 @@ fn return_call_ref_to_imported_function() -> Result<()> { } #[test] +#[cfg(not(target_arch = "s390x"))] fn return_call_indirect_to_imported_function() -> Result<()> { let mut config = Config::new(); config.wasm_tail_call(true);