From fb19e038582a2bfc414465ef396c30197f67128f Mon Sep 17 00:00:00 2001 From: Adrian Freihofer Date: Tue, 14 Jan 2025 23:17:01 +0100 Subject: [PATCH] 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 Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- .../oeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/rust/files/oeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch b/meta/recipes-devtools/rust/files/oeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch index b42dda8b34..bb27ca35ff 100644 --- a/meta/recipes-devtools/rust/files/oeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch +++ b/meta/recipes-devtools/rust/files/oeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch @@ -25,7 +25,7 @@ index 11f363d62..c12d66016 100644 // Just in case `yes` doesn't check for EPIPE... thread::spawn(|| { - thread::sleep_ms(5000); -+ thread::sleep_ms(10000); ++ thread::sleep_ms(50000); process::exit(1); }); let output = process::Command::new("sh") -- 2.47.2