mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Rust stable version updated to 1.87.0. https://blog.rust-lang.org/2025/05/15/Rust-1.87.0/ * Update LLVM data-layout for arm64. LLVM requires matching data layouts and the aarch64 llvm data-layout was updated to to allow using 32-bit signed/unsigned pointers when building 64-bit targets using 270, 271 and 272 address spaces.e985396145c9f27275c1* Rebase existing patches with v1.87.0. * Two tests from the `ui` and `codegen` modules now fail only on riscv64. Enable them on arm32/64 and x86-32/64 targets, while restricting them on riscv64 via `only-<target_arch>` tags. Test Results Summary: +-----------+--------+---------+ | Machine | Passed | Ignored | +-----------+--------+---------+ | arm-32 | 28,320 | 901 | | arm-64 | 28,400 | 849 | | x86-32 | 28,285 | 885 | | x86-64 | 28,518 | 676 | | riscv-64 | 27,845 | 868 | +-----------+--------+---------+ * Backport triagebot.patch to skip tidy linkcheck when triagebot.toml is not present. Distribution tarballs won't include triagebot.toml, which causes tidy checks to fail. This backport ensures tidy checks can still run successfully even when the file is missing. https://github.com/rust-lang/rust/pull/142666/commits * During rust installation, some binaries were installed from 'stage2-tools' built path to '${D}${bindir}'. However, from v1.87 the stage2-tools are no longer built by default. Update logic to install from `stage1-tools` instead. (From OE-Core rev: 16ce25e6970b4a50f6433606a0c87d22ec74ea5a) Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From b4524278985f517b0785b6f64a21380dcf1ff096 Mon Sep 17 00:00:00 2001
|
|
From: Peter Tatrai <peter.tatrai.ext@siemens.com>
|
|
Date: Mon, 4 Nov 2024 13:58:16 +0100
|
|
Subject: [PATCH] oeqa/selftest: Increase timeout in process-sigpipe rust test
|
|
|
|
This patch increases the timeout for the process-sigpipe rust test, which
|
|
occasionally fails when the server is under heavy load. Increasing the timeout
|
|
reduces the likelihood of false negatives under load.
|
|
|
|
Fixes [YOCTO #15625]
|
|
|
|
Upstream-Status: Inappropriate [OE testing specific]
|
|
|
|
Signed-off-by: Peter Tatrai <peter.tatrai.ext@siemens.com>
|
|
---
|
|
tests/ui/process/process-sigpipe.rs | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/ui/process/process-sigpipe.rs b/tests/ui/process/process-sigpipe.rs
|
|
index 11f363d62..c12d66016 100644
|
|
--- a/tests/ui/process/process-sigpipe.rs
|
|
+++ b/tests/ui/process/process-sigpipe.rs
|
|
@@ -23,7 +23,7 @@ use std::thread;
|
|
fn main() {
|
|
// Just in case `yes` or `while-echo` doesn't check for EPIPE...
|
|
thread::spawn(|| {
|
|
- thread::sleep_ms(5000);
|
|
+ thread::sleep_ms(50000);
|
|
process::exit(1);
|
|
});
|
|
// QNX Neutrino does not have `yes`. Therefore, use `while-echo` for `nto`
|