mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
disable osx tests
This commit is contained in:
parent
862530b1a0
commit
21281a236a
2 changed files with 3 additions and 0 deletions
|
@ -247,6 +247,7 @@ mod tests {
|
||||||
assert!(second_time - first_time >= time::Duration::from_millis(wait_time));
|
assert!(second_time - first_time >= time::Duration::from_millis(wait_time));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(not(target_os = "macos"))]
|
||||||
#[crate::rt_test]
|
#[crate::rt_test]
|
||||||
async fn test_interval() {
|
async fn test_interval() {
|
||||||
let mut int = interval(Millis(250));
|
let mut int = interval(Millis(250));
|
||||||
|
@ -272,6 +273,7 @@ mod tests {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(not(target_os = "macos"))]
|
||||||
#[crate::rt_test]
|
#[crate::rt_test]
|
||||||
async fn test_interval_one_sec() {
|
async fn test_interval_one_sec() {
|
||||||
let int = interval(Millis::ONE_SEC);
|
let int = interval(Millis::ONE_SEC);
|
||||||
|
|
|
@ -640,6 +640,7 @@ impl Future for LowresTimerDriver {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(not(target_os = "macos"))]
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue