From 45053e21b2229c3f7b3b68b253772c4ea19a87c0 Mon Sep 17 00:00:00 2001 From: Alona Enraght-Moony Date: Mon, 7 Jul 2025 21:56:54 +0000 Subject: [PATCH] Run `tests/rustdoc-json/attrs/target_features` on all hosts. Makes it more convenient to test rustdoc on non x86_64. I mainly care about the aarch64 dev-desktops. This works because rustdoc uses all target features, not just that of the target. --- tests/rustdoc-json/attrs/target_feature.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/rustdoc-json/attrs/target_feature.rs b/tests/rustdoc-json/attrs/target_feature.rs index ee2b3235f7256..ed1a717e1f042 100644 --- a/tests/rustdoc-json/attrs/target_feature.rs +++ b/tests/rustdoc-json/attrs/target_feature.rs @@ -1,5 +1,3 @@ -//@ only-x86_64 - //@ is "$.index[?(@.name=='test1')].attrs" '["#[target_feature(enable=\"avx\")]"]' #[target_feature(enable = "avx")] pub fn test1() {}