Skip to content

Commit d2432f6

Browse files
afreofg-scott-murray
authored andcommitted
rust: increase test timeout again
Fixes [YOCTO #15625] The first attempt to get around the timeout was to double it from 5000 to 10000, which doesn't seem to be enough. Let's try to fix this by extending the timeout by a factor of 10. Signed-off-by: Adrian Freihofer <[email protected]> Signed-off-by: Mathieu Dubois-Briand <[email protected]> Signed-off-by: Richard Purdie <[email protected]>
1 parent 2c51da6 commit d2432f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes-devtools/rust/files/oeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ index 11f363d62..c12d66016 100644
2525
// Just in case `yes` doesn't check for EPIPE...
2626
thread::spawn(|| {
2727
- thread::sleep_ms(5000);
28-
+ thread::sleep_ms(10000);
28+
+ thread::sleep_ms(50000);
2929
process::exit(1);
3030
});
3131
let output = process::Command::new("sh")

0 commit comments

Comments
 (0)