Skip to content

Commit 9287964

Browse files
committed
Increase test timeout to 5 minutes to allow for longer tests
1 parent 1fc4abd commit 9287964

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/subcommand/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ pub(crate) fn test(mut args: Args) -> Result<(), ErrorString> {
5050
let mut child = command
5151
.spawn()
5252
.map_err(|e| format!("Failed to launch QEMU: {:?}\n{}", command, e))?;
53-
let timeout = Duration::from_secs(60);
53+
let timeout = Duration::from_secs(60 * 5);
5454
match child
5555
.wait_timeout(timeout)
5656
.map_err(|e| format!("Failed to wait with timeout: {}", e))?

0 commit comments

Comments
 (0)