add tidy check for stray rustfix files

This commit is contained in:
asquared31415 2023-07-29 23:49:04 +00:00
parent 32303b219d
commit 6850a00bd0

View file

@ -100,7 +100,7 @@ pub fn check(path: &Path, bad: &mut bool) {
{ {
tidy_error!(bad, "file {} has unexpected extension {}", file_path.display(), ext); 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: // Test output filenames have one of the formats:
// ``` // ```
// $testname.stderr // $testname.stderr