diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-11-17 15:58:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-17 15:58:02 +0100 |
| commit | ab958a7ab0f65536fb921896a526ce81e4dee32d (patch) | |
| tree | 1f5db2c39c2e8d6e96ed67cce55a4457d5e9cc03 /src/tools | |
| parent | 904dba506640f290c182f5f6e717a82c6e5b8dae (diff) | |
| parent | eee29b0b95aedd9568df63a49340ca6efbf4bbb0 (diff) | |
Rollup merge of #90861 - 5225225:nonprinting-char, r=davidtwco
Print escaped string if char literal has multiple characters, but only one printable character Fixes #90857 I'm not sure about the error message here, it could get rather long and *maybe* using the names of characters would be better? That wouldn't help the length any, though.
Diffstat (limited to 'src/tools')
| -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 cc058d538f3..681b2486d07 100644 --- a/src/tools/tidy/src/ui_tests.rs +++ b/src/tools/tidy/src/ui_tests.rs @@ -9,7 +9,7 @@ const ENTRY_LIMIT: usize = 1000; // FIXME: The following limits should be reduced eventually. const ROOT_ENTRY_LIMIT: usize = 1102; const ISSUES_ENTRY_LIMIT: usize = 2310; -const PARSER_LIMIT: usize = 1004; +const PARSER_LIMIT: usize = 1005; fn check_entries(path: &Path, bad: &mut bool) { let dirs = walkdir::WalkDir::new(&path.join("test/ui")) |
