mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 20:43:21 +00:00
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:
commit
eb99c35b3d
1 changed files with 2 additions and 1 deletions
|
@ -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"),
|
||||||
|
|
Loading…
Reference in a new issue