From 776405c058851a9d5937c44509174d2f0198b987 Mon Sep 17 00:00:00 2001 From: Folkert de Vries Date: Thu, 13 Nov 2025 12:46:34 +0100 Subject: [PATCH] add missing s390x target feature to std detect test --- library/std/tests/run-time-detect.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/std/tests/run-time-detect.rs b/library/std/tests/run-time-detect.rs index b2c3d0d3f9f8b..be2980f73268f 100644 --- a/library/std/tests/run-time-detect.rs +++ b/library/std/tests/run-time-detect.rs @@ -16,6 +16,7 @@ all(target_arch = "powerpc64", target_os = "linux"), feature(stdarch_powerpc_feature_detection) )] +#![cfg_attr(all(target_arch = "s390x", target_os = "linux"), feature(s390x_target_feature))] #[test] #[cfg(all(target_arch = "arm", any(target_os = "linux", target_os = "android")))]