Skip to content

Commit

Permalink
Auto merge of #109874 - jyn514:subdirectory-limit, r=compiler-errors
Browse files Browse the repository at this point in the history
Reduce the default max number of files in a UI test directory

It doesn't make sense for the root directory to have a lower limit than subdirectories.
  • Loading branch information
bors committed Apr 6, 2023
2 parents f211da7 + a6810cc commit 7f6edd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/tidy/src/ui_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use std::collections::HashMap;
use std::fs;
use std::path::{Path, PathBuf};

const ENTRY_LIMIT: usize = 1000;
// FIXME: The following limits should be reduced eventually.
const ENTRY_LIMIT: usize = 885;
const ROOT_ENTRY_LIMIT: usize = 881;
const ISSUES_ENTRY_LIMIT: usize = 1978;

Expand Down

0 comments on commit 7f6edd3

Please sign in to comment.