Skip to content

Commit

Permalink
re-enable tests on apple silicon (bevyengine#7400)
Browse files Browse the repository at this point in the history
# Objective

- Fixes bevyengine#6687

## Solution

- The future is now! Rust 1.67 was released with the fix
  • Loading branch information
mockersf authored and ItsDoot committed Feb 1, 2023
1 parent 3c1ad47 commit fd414a9
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions crates/bevy_time/src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,6 @@ mod tests {
}

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

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

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

0 comments on commit fd414a9

Please sign in to comment.