diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-12-31 08:26:24 +0900 |
|---|---|---|
| committer | Yuki Okushi <huyuumi.dev@gmail.com> | 2021-01-01 09:23:11 +0900 |
| commit | 9fb9f290b41927ea1533eace0f4c9d295faeba90 (patch) | |
| tree | 2f132606bf91e8bf4b91b4ae9b6963cb934dbdd5 | |
| parent | 4530da7ff0cad9e324b7ab650fca52c356f45ddd (diff) | |
| download | rust-9fb9f290b41927ea1533eace0f4c9d295faeba90.tar.gz rust-9fb9f290b41927ea1533eace0f4c9d295faeba90.zip | |
Reduce `ROOT_ENTRY_LIMIT` to 1500
| -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 d8d2b449fee..bc5e43d8f0a 100644 --- a/src/tools/tidy/src/ui_tests.rs +++ b/src/tools/tidy/src/ui_tests.rs @@ -7,7 +7,7 @@ use std::path::Path; const ENTRY_LIMIT: usize = 1000; // FIXME: The following limits should be reduced eventually. -const ROOT_ENTRY_LIMIT: usize = 1580; +const ROOT_ENTRY_LIMIT: usize = 1500; const ISSUES_ENTRY_LIMIT: usize = 2830; fn check_entries(path: &Path, bad: &mut bool) { |
