Skip to content

Commit 8e52b47

Browse files
committed
Increase the screenshot timeout further
1 parent 7817241 commit 8e52b47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uefi-test-runner/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ fn check_screenshot(bt: &BootServices, name: &str) {
6969
.expect("Could not find serial port");
7070
let serial = unsafe { serial.as_mut() };
7171

72-
// Set a large timeout to avoid problems
72+
// Set a large timeout to avoid problems with Travis
7373
let mut io_mode = *serial.io_mode();
74-
io_mode.timeout = 3_000_000;
74+
io_mode.timeout = 10_000_000;
7575
serial
7676
.set_attributes(&io_mode)
7777
.expect_success("Failed to configure serial port timeout");

0 commit comments

Comments
 (0)