mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
Rollup merge of #106734 - albertlarsan68:deny-src-tests-in-tidy, r=Nilstrieb
Deny having src/test exisiting in tidy Fixes #106724
This commit is contained in:
commit
106df9ec98
@ -64,6 +64,7 @@ pub mod pal;
|
||||
pub mod primitive_docs;
|
||||
pub mod style;
|
||||
pub mod target_specific_tests;
|
||||
pub mod tests_placement;
|
||||
pub mod ui_tests;
|
||||
pub mod unit_tests;
|
||||
pub mod unstable_book;
|
||||
|
@ -76,6 +76,7 @@ fn main() {
|
||||
check!(extdeps, &root_path);
|
||||
|
||||
// Checks over tests.
|
||||
check!(tests_placement, &root_path);
|
||||
check!(debug_artifacts, &tests_path);
|
||||
check!(ui_tests, &tests_path);
|
||||
check!(mir_opt_tests, &tests_path, bless);
|
||||
|
15
src/tools/tidy/src/tests_placement.rs
Normal file
15
src/tools/tidy/src/tests_placement.rs
Normal file
@ -0,0 +1,15 @@
|
||||
use std::path::Path;
|
||||
|
||||
const FORBIDDEN_PATH: &str = "src/test";
|
||||
const ALLOWED_PATH: &str = "tests";
|
||||
|
||||
pub fn check(root_path: impl AsRef<Path>, bad: &mut bool) {
|
||||
if root_path.as_ref().join(FORBIDDEN_PATH).exists() {
|
||||
tidy_error!(
|
||||
bad,
|
||||
"Tests have been moved, please move them from {} to {}",
|
||||
root_path.as_ref().join(FORBIDDEN_PATH).display(),
|
||||
root_path.as_ref().join(ALLOWED_PATH).display()
|
||||
)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user