tidy
This commit is contained in:
parent
0f91ed4177
commit
fff3c25b85
1 changed files with 3 additions and 1 deletions
|
|
@ -1415,7 +1415,9 @@ impl<'test> TestCx<'test> {
|
|||
|
||||
fn check_no_compiler_crash(&self, proc_res: &ProcRes, should_ice: bool) {
|
||||
match proc_res.status.code() {
|
||||
Some(101) if !should_ice => self.fatal_proc_rec("compiler encountered internal error", proc_res),
|
||||
Some(101) if !should_ice => {
|
||||
self.fatal_proc_rec("compiler encountered internal error", proc_res)
|
||||
}
|
||||
None => self.fatal_proc_rec("compiler terminated by signal", proc_res),
|
||||
_ => (),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue