We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c6e2ff commit c008cd7Copy full SHA for c008cd7
src/tools/compiletest/src/runtest.rs
@@ -1589,8 +1589,14 @@ actual:\n\
1589
}
1590
1591
fn dump_output(&self, out: &str, err: &str) {
1592
- self.dump_output_file(out, "out");
1593
- self.dump_output_file(err, "err");
+ let revision = if let Some(r) = self.revision {
+ format!("{}.", r)
1594
+ } else {
1595
+ String::new()
1596
+ };
1597
+
1598
+ self.dump_output_file(out, &format!("{}out", revision));
1599
+ self.dump_output_file(err, &format!("{}err", revision));
1600
self.maybe_dump_to_stdout(out, err);
1601
1602
0 commit comments