mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
Rollup merge of #82203 - c410-f3r:tests-tests-tests, r=Dylan-DPC
Move some tests to more reasonable directories - 4 cc #81941
This commit is contained in:
commit
fe15494857
@ -1 +0,0 @@
|
||||
{"artifact":"$TEST_BUILD_DIR/emit-artifact-notifications.nll/libemit_artifact_notifications.rmeta","emit":"metadata"}
|
@ -1 +0,0 @@
|
||||
{"artifact":"$TEST_BUILD_DIR/emit-artifact-notifications.polonius/libemit_artifact_notifications.rmeta","emit":"metadata"}
|
@ -1 +0,0 @@
|
||||
{"artifact":"$TEST_BUILD_DIR/emit-artifact-notifications/libemit_artifact_notifications.rmeta","emit":"metadata"}
|
@ -1,14 +0,0 @@
|
||||
// run-pass
|
||||
|
||||
#![allow(unused_comparisons)]
|
||||
// Test that you only need the syntax gate if you don't mention the structs.
|
||||
// (Obsoleted since both features are stabilized)
|
||||
|
||||
fn main() {
|
||||
let mut count = 0;
|
||||
for i in 0_usize..=10 {
|
||||
assert!(i >= 0 && i <= 10);
|
||||
count += i;
|
||||
}
|
||||
assert_eq!(count, 55);
|
||||
}
|
1
src/test/ui/rmeta/emit-artifact-notifications.nll.stderr
Normal file
1
src/test/ui/rmeta/emit-artifact-notifications.nll.stderr
Normal file
@ -0,0 +1 @@
|
||||
{"artifact":"$TEST_BUILD_DIR/rmeta/emit-artifact-notifications.nll/libemit_artifact_notifications.rmeta","emit":"metadata"}
|
@ -0,0 +1 @@
|
||||
{"artifact":"$TEST_BUILD_DIR/rmeta/emit-artifact-notifications.polonius/libemit_artifact_notifications.rmeta","emit":"metadata"}
|
1
src/test/ui/rmeta/emit-artifact-notifications.stderr
Normal file
1
src/test/ui/rmeta/emit-artifact-notifications.stderr
Normal file
@ -0,0 +1 @@
|
||||
{"artifact":"$TEST_BUILD_DIR/rmeta/emit-artifact-notifications/libemit_artifact_notifications.rmeta","emit":"metadata"}
|
@ -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 = 1459;
|
||||
const ISSUES_ENTRY_LIMIT: usize = 2615;
|
||||
const ROOT_ENTRY_LIMIT: usize = 1418;
|
||||
const ISSUES_ENTRY_LIMIT: usize = 2582;
|
||||
|
||||
fn check_entries(path: &Path, bad: &mut bool) {
|
||||
let dirs = walkdir::WalkDir::new(&path.join("test/ui"))
|
||||
|
Loading…
Reference in New Issue
Block a user