disable osx tests

This commit is contained in:
Nikolay Kim 2021-10-29 22:07:30 +06:00
parent 862530b1a0
commit 21281a236a
2 changed files with 3 additions and 0 deletions

View file

@ -247,6 +247,7 @@ mod tests {
assert!(second_time - first_time >= time::Duration::from_millis(wait_time));
}
#[cfg(not(target_os = "macos"))]
#[crate::rt_test]
async fn test_interval() {
let mut int = interval(Millis(250));
@ -272,6 +273,7 @@ mod tests {
);
}
#[cfg(not(target_os = "macos"))]
#[crate::rt_test]
async fn test_interval_one_sec() {
let int = interval(Millis::ONE_SEC);

View file

@ -640,6 +640,7 @@ impl Future for LowresTimerDriver {
}
}
#[cfg(not(target_os = "macos"))]
#[cfg(test)]
mod tests {
use super::*;