about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2021-05-21 20:06:09 +0200
committerGitHub <noreply@github.com>2021-05-21 20:06:09 +0200
commit0f48e6365be66d2938b08615146dcbfed82413f3 (patch)
treeb1c4097c05f530c01a3380c553b6ccbcc85e2460 /src/tools
parent9ec88ce78a9640324a2ad801b294ea5b8710139e (diff)
parent0e1afc4501eae89862a50ab24961a8d12ece0a37 (diff)
downloadrust-0f48e6365be66d2938b08615146dcbfed82413f3.tar.gz
rust-0f48e6365be66d2938b08615146dcbfed82413f3.zip
Rollup merge of #85555 - LeSeulArtichaut:thir-unsafeck, r=nikomatsakis
Check for more things in THIR unsafeck

Reunion of #85306, #85381 and #85419 with conflicts resolved.
r? `@nikomatsakis`
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/tidy/src/ui_tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/tidy/src/ui_tests.rs b/src/tools/tidy/src/ui_tests.rs
index 7b42de0ec43..3f983884460 100644
--- a/src/tools/tidy/src/ui_tests.rs
+++ b/src/tools/tidy/src/ui_tests.rs
@@ -7,8 +7,8 @@ use std::path::Path;
 
 const ENTRY_LIMIT: usize = 1000;
 // FIXME: The following limits should be reduced eventually.
-const ROOT_ENTRY_LIMIT: usize = 1370;
-const ISSUES_ENTRY_LIMIT: usize = 2555;
+const ROOT_ENTRY_LIMIT: usize = 1371;
+const ISSUES_ENTRY_LIMIT: usize = 2558;
 
 fn check_entries(path: &Path, bad: &mut bool) {
     let dirs = walkdir::WalkDir::new(&path.join("test/ui"))