Display the name of the failed file in tidy/libcoretest
This commit is contained in:
parent
fd85de1459
commit
16c088d325
1 changed files with 15 additions and 8 deletions
|
@ -22,14 +22,21 @@ pub fn check(path: &Path, bad: &mut bool) {
|
|||
&libcore_path,
|
||||
&mut |subpath| t!(subpath.strip_prefix(&libcore_path)).starts_with("tests"),
|
||||
&mut |subpath| {
|
||||
if subpath.ends_with(".rs") {
|
||||
if t!(read_to_string(subpath)).contains("#[test]") {
|
||||
tidy_error!(
|
||||
bad,
|
||||
"{} contains #[test]; libcore tests must be placed inside \
|
||||
`src/libcore/tests/`",
|
||||
subpath.display()
|
||||
);
|
||||
if let Some("rs") = subpath.extension().and_then(|e| e.to_str()) {
|
||||
match read_to_string(subpath) {
|
||||
Ok(contents) => {
|
||||
if contents.contains("#[test]") {
|
||||
tidy_error!(
|
||||
bad,
|
||||
"{} contains #[test]; libcore tests must be placed inside \
|
||||
`src/libcore/tests/`",
|
||||
subpath.display()
|
||||
);
|
||||
}
|
||||
}
|
||||
Err(err) => {
|
||||
panic!("failed to read file {:?}: {}", subpath, err);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue