about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAna Hobden <operator@hoverbear.org>2024-07-02 10:09:40 -0700
committerAna Hobden <operator@hoverbear.org>2024-07-02 10:09:40 -0700
commit4b0b97f66ddf36525b844a9c0c775db9f980248f (patch)
tree8fee53a9aab66b9a92331d5d1f5428b160c00a2a
parent7d97c59438e933e86f557ed999da3b8dfc6855a7 (diff)
downloadrust-4b0b97f66ddf36525b844a9c0c775db9f980248f.tar.gz
rust-4b0b97f66ddf36525b844a9c0c775db9f980248f.zip
Give remote-test-client a longer timeout
-rw-r--r--src/tools/remote-test-client/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/remote-test-client/src/main.rs b/src/tools/remote-test-client/src/main.rs
index dd2c09c430b..42de3caf547 100644
--- a/src/tools/remote-test-client/src/main.rs
+++ b/src/tools/remote-test-client/src/main.rs
@@ -71,7 +71,7 @@ fn spawn_emulator(target: &str, server: &Path, tmpdir: &Path, rootfs: Option<Pat
 
     // Wait for the emulator to come online
     loop {
-        let dur = Duration::from_millis(100);
+        let dur = Duration::from_millis(2000);
         if let Ok(mut client) = TcpStream::connect(&device_address) {
             t!(client.set_read_timeout(Some(dur)));
             t!(client.set_write_timeout(Some(dur)));