Auto merge of #2174 - RalfJung:summary, r=oli-obk
print list of failed tests in summary compiletest does this and it is quite useful; see e.g. [here](https://github.com/rust-lang/rust/runs/6473917188?check_suite_focus=true). Example output: 
This commit is contained in:
commit
749efd2956
1 changed files with 5 additions and 0 deletions
|
|
@ -209,6 +209,11 @@ pub fn run_tests(config: Config) {
|
|||
eprintln!();
|
||||
}
|
||||
}
|
||||
eprintln!("{}", "failures:".red().underline());
|
||||
for (path, _miri, _revision, _errors, _stderr) in &failures {
|
||||
eprintln!(" {}", path.display());
|
||||
}
|
||||
eprintln!();
|
||||
eprintln!(
|
||||
"test result: {}. {} tests failed, {} tests passed, {} ignored, {} filtered out",
|
||||
"FAIL".red(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue