about summary refs log tree commit diff
path: root/tests/ui/target-feature/target-feature-detection.rs
diff options
context:
space:
mode:
authorJubilee <workingjubilee@gmail.com>2025-07-04 23:26:23 -0700
committerGitHub <noreply@github.com>2025-07-04 23:26:23 -0700
commit5f415da0b52fa8de667ce53ec5daf76fca6a0591 (patch)
tree5c2c965d8d781e131a6f46dcb4e0c8e0748b4316 /tests/ui/target-feature/target-feature-detection.rs
parent069f571fad6c4f99aa1cdc9367bc51a758a9f5e6 (diff)
parent066a281f60fd5071a50cf15a28ed40f15bef7563 (diff)
downloadrust-5f415da0b52fa8de667ce53ec5daf76fca6a0591.tar.gz
rust-5f415da0b52fa8de667ce53ec5daf76fca6a0591.zip
Rollup merge of #143300 - Kivooeo:tf25, r=tgross35
`tests/ui`: A New Order [25/N]

> [!NOTE]
>
> Intermediate commits are intended to help review, but will be squashed prior to merge.

Some `tests/ui/` housekeeping, to trim down number of tests directly under `tests/ui/`. Part of rust-lang/rust#133895.

r? `@tgross35`
Diffstat (limited to 'tests/ui/target-feature/target-feature-detection.rs')
-rw-r--r--tests/ui/target-feature/target-feature-detection.rs35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/ui/target-feature/target-feature-detection.rs b/tests/ui/target-feature/target-feature-detection.rs
new file mode 100644
index 00000000000..3404bfbe782
--- /dev/null
+++ b/tests/ui/target-feature/target-feature-detection.rs
@@ -0,0 +1,35 @@
+//! Check that `cfg!(target_feature = "...")` correctly detects available CPU features,
+//! specifically `sse2` on x86/x86_64 platforms, and correctly reports absent features.
+
+//@ run-pass
+
+#![allow(stable_features)]
+#![feature(cfg_target_feature)]
+
+use std::env;
+
+fn main() {
+    match env::var("TARGET") {
+        Ok(s) => {
+            // Skip this tests on i586-unknown-linux-gnu where sse2 is disabled
+            if s.contains("i586") {
+                return;
+            }
+        }
+        Err(_) => return,
+    }
+    if cfg!(any(target_arch = "x86", target_arch = "x86_64")) {
+        assert!(
+            cfg!(target_feature = "sse2"),
+            "SSE2 was not detected as available on an x86 platform"
+        );
+    }
+    // check a negative case too -- certainly not enabled by default
+    #[expect(unexpected_cfgs)]
+    {
+        assert!(
+            cfg!(not(target_feature = "ferris_wheel")),
+            "🎡 shouldn't be detected as available by default on any platform"
+        )
+    };
+}