Sync expected successful tests on AArch64 (#1581)
* Sync expected successful tests on AArch64 Fixes CI for recent merges which have fixed features on AArch64! * Enable more passing tests
This commit is contained in:
@@ -54,7 +54,6 @@ fn build_wasm(wat_path: impl AsRef<Path>) -> Result<NamedTempFile> {
|
||||
|
||||
// Very basic use case: compile binary wasm file and run specific function with arguments.
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1521)
|
||||
fn run_wasmtime_simple() -> Result<()> {
|
||||
let wasm = build_wasm("tests/wasm/simple.wat")?;
|
||||
run_wasmtime(&[
|
||||
@@ -70,7 +69,6 @@ fn run_wasmtime_simple() -> Result<()> {
|
||||
|
||||
// Wasmtime shakk when not enough arguments were provided.
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1521)
|
||||
fn run_wasmtime_simple_fail_no_args() -> Result<()> {
|
||||
let wasm = build_wasm("tests/wasm/simple.wat")?;
|
||||
assert!(
|
||||
@@ -89,7 +87,6 @@ fn run_wasmtime_simple_fail_no_args() -> Result<()> {
|
||||
|
||||
// Running simple wat
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1521)
|
||||
fn run_wasmtime_simple_wat() -> Result<()> {
|
||||
let wasm = build_wasm("tests/wasm/simple.wat")?;
|
||||
run_wasmtime(&[
|
||||
@@ -129,7 +126,6 @@ fn run_wasmtime_unreachable_wat() -> Result<()> {
|
||||
|
||||
// Run a simple WASI hello world, snapshot0 edition.
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1521)
|
||||
fn hello_wasi_snapshot0() -> Result<()> {
|
||||
let wasm = build_wasm("tests/wasm/hello_wasi_snapshot0.wat")?;
|
||||
let stdout = run_wasmtime(&[wasm.path().to_str().unwrap(), "--disable-cache"])?;
|
||||
@@ -139,7 +135,6 @@ fn hello_wasi_snapshot0() -> Result<()> {
|
||||
|
||||
// Run a simple WASI hello world, snapshot1 edition.
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1521)
|
||||
fn hello_wasi_snapshot1() -> Result<()> {
|
||||
let wasm = build_wasm("tests/wasm/hello_wasi_snapshot1.wat")?;
|
||||
let stdout = run_wasmtime(&[wasm.path().to_str().unwrap(), "--disable-cache"])?;
|
||||
|
||||
Reference in New Issue
Block a user