Skip to content

Commit e2bee56

Browse files
committed
simplify: only write check-pass once
bump up max ROOT_ENTRY_LIMIT
1 parent dbec4a4 commit e2bee56

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/tools/tidy/src/ui_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const ENTRY_LIMIT: usize = 900;
1818
// FIXME: The following limits should be reduced eventually.
1919

2020
const ISSUES_ENTRY_LIMIT: usize = 1750;
21-
const ROOT_ENTRY_LIMIT: usize = 860;
21+
const ROOT_ENTRY_LIMIT: usize = 900;
2222

2323
const EXPECTED_TEST_FILE_EXTENSIONS: &[&str] = &[
2424
"rs", // test source files
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1+
// Check that rustc accepts various version info flags.
12
//@ revisions: version verbose-version long-verbose-version
2-
//@[version] check-pass
3+
//@ check-pass
4+
35
//@[version] compile-flags: -V
4-
//@[verbose-version] check-pass
56
//@[verbose-version] compile-flags: -vV
6-
//@[long-verbose-version] check-pass
7-
//@[long-verbose-verison] compile-flags: --version --verbose
8-
9-
// Check that rustc accepts various version info flags.
7+
//@[long-verbose-version] compile-flags: --version --verbose
108

119
fn main() {}

0 commit comments

Comments
 (0)