We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7817241 commit 8e52b47Copy full SHA for 8e52b47
uefi-test-runner/src/main.rs
@@ -69,9 +69,9 @@ fn check_screenshot(bt: &BootServices, name: &str) {
69
.expect("Could not find serial port");
70
let serial = unsafe { serial.as_mut() };
71
72
- // Set a large timeout to avoid problems
+ // Set a large timeout to avoid problems with Travis
73
let mut io_mode = *serial.io_mode();
74
- io_mode.timeout = 3_000_000;
+ io_mode.timeout = 10_000_000;
75
serial
76
.set_attributes(&io_mode)
77
.expect_success("Failed to configure serial port timeout");
0 commit comments