From acdb38858094b400d3ad1b9baf2fbc61cd9c6400 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 22 Jun 2021 16:14:07 +0200 Subject: [PATCH] Fix offsets_static_dynamic_oh_my failure on s390x (#3015) The test unconditionally emits a SIMD load, which fails on s390x as we do not yet support SIMD. Disable this particular part of the test on s390x. --- tests/all/memory.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/all/memory.rs b/tests/all/memory.rs index 027cf71c38..9b8e223669 100644 --- a/tests/all/memory.rs +++ b/tests/all/memory.rs @@ -19,6 +19,7 @@ fn module(engine: &Engine) -> Result { (2, &["i32.load16_s"]), (4, &["i32.load" /*, "f32.load"*/]), (8, &["i64.load" /*, "f64.load"*/]), + #[cfg(not(target_arch = "s390x"))] (16, &["v128.load"]), ] .iter()