Skip to content

Commit bfafa78

Browse files
committed
re-enable tests on apple silicon (#7400)
# Objective - Fixes #6687 ## Solution - The future is now! Rust 1.67 was released with the fix
1 parent 299bd37 commit bfafa78

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

crates/bevy_time/src/time.rs

-9
Original file line numberDiff line numberDiff line change
@@ -442,9 +442,6 @@ mod tests {
442442
}
443443

444444
#[test]
445-
// Don't run on a m1 as they have a 41ns precision
446-
// https://github.com/rust-lang/rust/issues/91417
447-
#[cfg(not(all(target_arch = "aarch64", target_vendor = "apple")))]
448445
fn update_test() {
449446
let start_instant = Instant::now();
450447
let mut time = Time::new(start_instant);
@@ -577,9 +574,6 @@ mod tests {
577574
}
578575

579576
#[test]
580-
// Don't run on a m1 as they have a 41ns precision
581-
// https://github.com/rust-lang/rust/issues/91417
582-
#[cfg(not(all(target_arch = "aarch64", target_vendor = "apple")))]
583577
fn relative_speed_test() {
584578
let start_instant = Instant::now();
585579
let mut time = Time::new(start_instant);
@@ -682,9 +676,6 @@ mod tests {
682676
}
683677

684678
#[test]
685-
// Don't run on a m1 as they have a 41ns precision
686-
// https://github.com/rust-lang/rust/issues/91417
687-
#[cfg(not(all(target_arch = "aarch64", target_vendor = "apple")))]
688679
fn pause_test() {
689680
let start_instant = Instant::now();
690681
let mut time = Time::new(start_instant);

0 commit comments

Comments
 (0)