Merge #5555
5555: Bump test timeout for macs r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
@@ -253,7 +253,8 @@ impl Drop for Server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn recv_timeout(receiver: &Receiver<Message>) -> Option<Message> {
|
fn recv_timeout(receiver: &Receiver<Message>) -> Option<Message> {
|
||||||
let timeout = Duration::from_secs(120);
|
let timeout =
|
||||||
|
if cfg!(target_os = "macos") { Duration::from_secs(300) } else { Duration::from_secs(120) };
|
||||||
select! {
|
select! {
|
||||||
recv(receiver) -> msg => msg.ok(),
|
recv(receiver) -> msg => msg.ok(),
|
||||||
recv(after(timeout)) -> _ => panic!("timed out"),
|
recv(after(timeout)) -> _ => panic!("timed out"),
|
||||||
|
|||||||
Reference in New Issue
Block a user