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
1 changed files with 2 additions and 0 deletions

View File

@ -151,6 +151,8 @@ mod tests {
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
// it will race with other tests
// see: https://github.com/rust-lang/rust/issues/47506