mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 18:23:49 +00:00
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.
This commit is contained in:
parent
90a9f69c80
commit
a6810ccb25
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user