Move some tests

This commit is contained in:
Caio 2024-02-09 15:43:08 -03:00
parent e28fae52d9
commit 69a5264a52
30 changed files with 2 additions and 22 deletions

View file

@ -14,8 +14,8 @@
// #73494.
const ENTRY_LIMIT: usize = 900;
// FIXME: The following limits should be reduced eventually.
const ISSUES_ENTRY_LIMIT: usize = 1819;
const ROOT_ENTRY_LIMIT: usize = 872;
const ISSUES_ENTRY_LIMIT: usize = 1794;
const ROOT_ENTRY_LIMIT: usize = 870;
const EXPECTED_TEST_FILE_EXTENSIONS: &[&str] = &[
"rs", // test source files

View file

@ -1,11 +0,0 @@
// run-pass
#![allow(unused_imports)]
#![no_std]
extern crate std;
use std::ffi::c_void;
pub fn main() {
std::println!("Hello world!");
}

View file

@ -1,9 +0,0 @@
// run-pass
// pretty-expanded FIXME #23616
#![allow(path_statements)]
pub fn main() {
let y: Box<_> = Box::new(1);
y;
}