Skip to content

Commit cc6dd2e

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 <adrian.freihofer@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (adapted from oe-core commit fb19e038582a2bfc414465ef396c30197f67128f) Signed-off-by: Scott Murray <scott.murray@konsulko.com>
1 parent d735ef6 commit cc6dd2e

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)