Disable builtin_mappings_are_lazily_evaluated for ARM builds

This commit is contained in:
cyqsimon 2023-11-07 22:05:38 +08:00
parent 586c804b1e
commit 8a08025091
No known key found for this signature in database
GPG Key ID: 1D8CE2F297390D65

View File

@ -151,6 +151,8 @@ mod tests {
let _mappings = map.builtin_mappings().collect::<Vec<_>>(); let _mappings = map.builtin_mappings().collect::<Vec<_>>();
} }
// 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 // lazy initialisation test needs to be run on a separate instance because
// it will race with other tests // it will race with other tests
// see: https://github.com/rust-lang/rust/issues/47506 // see: https://github.com/rust-lang/rust/issues/47506