Rollup merge of #111021 - c410-f3r:dqewdas, r=petrochenkov

Move some tests

r? ``@petrochenkov``
This commit is contained in:
Matthias Krüger 2023-05-09 20:49:31 +02:00 committed by GitHub
commit 985ea22489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
34 changed files with 1 additions and 18 deletions

View File

@ -9,7 +9,7 @@
const ENTRY_LIMIT: usize = 900;
// FIXME: The following limits should be reduced eventually.
const ISSUES_ENTRY_LIMIT: usize = 1953;
const ISSUES_ENTRY_LIMIT: usize = 1920;
const ROOT_ENTRY_LIMIT: usize = 895;
fn check_entries(tests_path: &Path, bad: &mut bool) {

View File

@ -1,17 +0,0 @@
// build-pass
#![allow(dead_code)]
#![allow(non_snake_case)]
// pretty-expanded FIXME #23616
struct CMap<'a> {
buf: &'a [u8],
}
fn CMap(buf: &[u8]) -> CMap {
CMap {
buf: buf
}
}
pub fn main() { }