From 4f7bec5e94fbc6c7b2ad177fab20c9c6bb558c6f Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Thu, 24 Sep 2020 17:37:48 +0200 Subject: [PATCH] machinst x64: enable two more Rust tests; Fixed by the grand ABI refactoring, h/t @cfallin. --- tests/all/iloop.rs | 1 - tests/all/stack_overflow.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/tests/all/iloop.rs b/tests/all/iloop.rs index 6f59800adc..23e6f85aa8 100644 --- a/tests/all/iloop.rs +++ b/tests/all/iloop.rs @@ -99,7 +99,6 @@ fn loop_interrupt_from_afar() -> anyhow::Result<()> { } #[test] -#[cfg_attr(feature = "experimental_x64", ignore)] // TODO #2079 interrupts in wasmtime fn function_interrupt_from_afar() -> anyhow::Result<()> { // Create an instance which calls an imported function on each iteration of // the loop so we can count the number of loop iterations we've executed so diff --git a/tests/all/stack_overflow.rs b/tests/all/stack_overflow.rs index edf557aa14..97e9dc1a08 100644 --- a/tests/all/stack_overflow.rs +++ b/tests/all/stack_overflow.rs @@ -2,7 +2,6 @@ use std::sync::atomic::{AtomicUsize, Ordering::SeqCst}; use wasmtime::*; #[test] -#[cfg_attr(feature = "experimental_x64", ignore)] // TODO #2079 require probe stacks fn host_always_has_some_stack() -> anyhow::Result<()> { static HITS: AtomicUsize = AtomicUsize::new(0); // assume hosts always have at least 512k of stack