From 8a080250916dee18c82d512a820dd2b9a61e3a1f Mon Sep 17 00:00:00 2001 From: cyqsimon <28627918+cyqsimon@users.noreply.github.com> Date: Tue, 7 Nov 2023 22:05:38 +0800 Subject: [PATCH] Disable `builtin_mappings_are_lazily_evaluated` for ARM builds --- src/syntax_mapping.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/syntax_mapping.rs b/src/syntax_mapping.rs index 6fd85463..c3071dea 100644 --- a/src/syntax_mapping.rs +++ b/src/syntax_mapping.rs @@ -151,6 +151,8 @@ mod tests { let _mappings = map.builtin_mappings().collect::>(); } + // disabled for ARM builds because of an issue with `rusty_fork` + #[cfg(not(any(target_arch = "arm", target_arch = "aarch64")))] // lazy initialisation test needs to be run on a separate instance because // it will race with other tests // see: https://github.com/rust-lang/rust/issues/47506