diff options
| author | asquared31415 <34665709+asquared31415@users.noreply.github.com> | 2023-07-29 23:49:04 +0000 |
|---|---|---|
| committer | asquared31415 <34665709+asquared31415@users.noreply.github.com> | 2023-07-29 23:49:04 +0000 |
| commit | 6850a00bd038ad9c45ec1daa9ebe34b6703fc16f (patch) | |
| tree | 699bcfc221f4989a65bdfdec34e9b8ae10d9a185 | |
| parent | 32303b219d4dffa447aa606bc11c7a648f44a862 (diff) | |
| download | rust-6850a00bd038ad9c45ec1daa9ebe34b6703fc16f.tar.gz rust-6850a00bd038ad9c45ec1daa9ebe34b6703fc16f.zip | |
add tidy check for stray rustfix files
| -rw-r--r-- | src/tools/tidy/src/ui_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/ui_tests.rs b/src/tools/tidy/src/ui_tests.rs index 6cc7fbcacaf..a1822c83986 100644 --- a/src/tools/tidy/src/ui_tests.rs +++ b/src/tools/tidy/src/ui_tests.rs @@ -100,7 +100,7 @@ pub fn check(path: &Path, bad: &mut bool) { { tidy_error!(bad, "file {} has unexpected extension {}", file_path.display(), ext); } - if ext == "stderr" || ext == "stdout" { + if ext == "stderr" || ext == "stdout" || ext == "fixed" { // Test output filenames have one of the formats: // ``` // $testname.stderr |
