Skip to content

Commit d558796

Browse files
committed
Auto merge of #109875 - jyn514:no-fulldeps, r=compiler-errors
Move most ui-fulldeps tests to ui/ Same rationale as #109770, they don't actually need a stage 2 build. This increases the limit for the UI directory because otherwise it was annoying to be constantly moving files into subdirectories when I fixed a test; #109873 makes up for it. cc #109770, #109874
2 parents 7a78c4f + 88ee6e5 commit d558796

29 files changed

+14
-12
lines changed

src/tools/tidy/src/ui_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::path::{Path, PathBuf};
99

1010
// FIXME: The following limits should be reduced eventually.
1111
const ENTRY_LIMIT: usize = 885;
12-
const ROOT_ENTRY_LIMIT: usize = 880;
12+
const ROOT_ENTRY_LIMIT: usize = 891;
1313
const ISSUES_ENTRY_LIMIT: usize = 1978;
1414

1515
fn check_entries(tests_path: &Path, bad: &mut bool) {

tests/ui-fulldeps/extern-mod-syntax.rs

Lines changed: 0 additions & 11 deletions
This file was deleted.

tests/ui/extern-mod-syntax.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// run-pass
2+
3+
#![allow(unused_imports)]
4+
#![no_std]
5+
6+
extern crate std;
7+
use std::ffi::c_void;
8+
9+
pub fn main() {
10+
std::println!("Hello world!");
11+
}

0 commit comments

Comments
 (0)