diff options
| author | cod10129 <110200933+cod10129@users.noreply.github.com> | 2025-01-14 20:24:11 -0600 |
|---|---|---|
| committer | cod10129 <110200933+cod10129@users.noreply.github.com> | 2025-01-14 20:24:11 -0600 |
| commit | 67f49010adf4ec3238564ec072b3652179813dd1 (patch) | |
| tree | 696523e8c386a1dd93079320fda6f4c39900c028 /src/tools/compiletest | |
| parent | 48a426eca9df23b24b3559e545cf88dee61d4de9 (diff) | |
| download | rust-67f49010adf4ec3238564ec072b3652179813dd1.tar.gz rust-67f49010adf4ec3238564ec072b3652179813dd1.zip | |
add tidy warning for unrecognized directives
This makes tidy warn on the presence of any directives it does not recognize. There are changes in compiletest because that file used "tidy-alphabet" instead of "tidy-alphabetical".
Diffstat (limited to 'src/tools/compiletest')
| -rw-r--r-- | src/tools/compiletest/src/runtest.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index 9e8443cd13c..9eb6887f7e6 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -32,7 +32,7 @@ use crate::{ColorConfig, json, stamp_file_path}; mod debugger; // Helper modules that implement test running logic for each test suite. -// tidy-alphabet-start +// tidy-alphabetical-start mod assembly; mod codegen; mod codegen_units; @@ -47,7 +47,7 @@ mod run_make; mod rustdoc; mod rustdoc_json; mod ui; -// tidy-alphabet-end +// tidy-alphabetical-end #[cfg(test)] mod tests; |
