about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2025-02-21 19:01:17 +0100
committerGitHub <noreply@github.com>2025-02-21 19:01:17 +0100
commit0f563616ecd8c6b347f49af7ebdfae3ae1fc209e (patch)
tree617609da8a78b9b79feab48be18b05f453ee2e76
parentb012356475d25a438b08ae1eb946bd7c44963750 (diff)
parent2f29c2ef5516e553c4ce5eb423efc864f8eb20d6 (diff)
downloadrust-0f563616ecd8c6b347f49af7ebdfae3ae1fc209e.tar.gz
rust-0f563616ecd8c6b347f49af7ebdfae3ae1fc209e.zip
Rollup merge of #137367 - workingjubilee:remove-stray-line, r=jieyouxu
Do not exempt nonexistent platforms from platform policy

In #137324 I approved the change of the i586-pc-qnx platform to i686 with this extra line included. I noticed it but thought it was a bootstrap problem of some sort. Nonetheless, removing this line doesn't seem to change anything.

r? `@Noratrieb`
-rw-r--r--src/tools/tidy/src/target_policy.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tools/tidy/src/target_policy.rs b/src/tools/tidy/src/target_policy.rs
index b2681934417..776221d3062 100644
--- a/src/tools/tidy/src/target_policy.rs
+++ b/src/tools/tidy/src/target_policy.rs
@@ -21,7 +21,6 @@ const EXCEPTIONS: &[&str] = &[
     "xtensa_esp32s2_espidf",
     "xtensa_esp32s3_none_elf",
     "xtensa_esp32s3_espidf",
-    "i586_pc_nto_qnx700", // Renamed to i686-pc-nto-qnx700, see https://github.com/rust-lang/rust/issues/136495
 ];
 
 pub fn check(root_path: &Path, bad: &mut bool) {