1
Fork 0

Renamed tests to avoid exceeding Windows max path limit

This commit is contained in:
Rich Kadel 2020-10-05 09:26:30 -07:00
parent f5aebad28f
commit 6f627663a7
126 changed files with 586 additions and 592 deletions

View file

@ -154,13 +154,7 @@ fn dump_matched_mir_node<'tcx, F>(
dump_file_basename(tcx, pass_num, pass_name, disambiguator, body.source);
let mut file = create_dump_file_with_basename(tcx, &file_basename, "html")?;
if body.source.def_id().is_local() {
write_mir_fn_spanview(
tcx,
body,
spanview,
&file_basename,
&mut file,
)?;
write_mir_fn_spanview(tcx, body, spanview, &file_basename, &mut file)?;
}
};
}