add tidy check for stray rustfix files
This commit is contained in:
parent
32303b219d
commit
6850a00bd0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue