From 0a0b40a9e001ce67f7bfbb7b050cd55223023d87 Mon Sep 17 00:00:00 2001 From: onur-ozkan Date: Fri, 10 May 2024 16:16:05 +0300 Subject: [PATCH] add "tidy-alphabetical" check on "tests" remap list Signed-off-by: onur-ozkan --- src/bootstrap/src/core/builder.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bootstrap/src/core/builder.rs b/src/bootstrap/src/core/builder.rs index 1d5dc0dddc06..feffa89e8a57 100644 --- a/src/bootstrap/src/core/builder.rs +++ b/src/bootstrap/src/core/builder.rs @@ -317,6 +317,7 @@ const PATH_REMAP: &[(&str, &[&str])] = &[ ( "tests", &[ + // tidy-alphabetical-start "tests/assembly", "tests/codegen", "tests/codegen-units", @@ -338,6 +339,7 @@ const PATH_REMAP: &[(&str, &[&str])] = &[ "tests/rustdoc-ui", "tests/ui", "tests/ui-fulldeps", + // tidy-alphabetical-end ], ), ];