We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fc4abd commit 9287964Copy full SHA for 9287964
src/subcommand/test.rs
@@ -50,7 +50,7 @@ pub(crate) fn test(mut args: Args) -> Result<(), ErrorString> {
50
let mut child = command
51
.spawn()
52
.map_err(|e| format!("Failed to launch QEMU: {:?}\n{}", command, e))?;
53
- let timeout = Duration::from_secs(60);
+ let timeout = Duration::from_secs(60 * 5);
54
match child
55
.wait_timeout(timeout)
56
.map_err(|e| format!("Failed to wait with timeout: {}", e))?
0 commit comments