Skip to content

Commit d3a1cab

Browse files
committed
Unconditionally create output file
1 parent 33dbe33 commit d3a1cab

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/difftests/runner/src/runner.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,9 @@ impl Runner {
272272
fs::write(&config_file, &config_json)?;
273273
trace!("Config file created at {}", config_file.display());
274274

275+
fs::write(&temp_output_path, [])?;
276+
trace!("Output file created at {}", temp_output_path.display());
277+
275278
let mut cmd = Command::new("cargo");
276279
cmd.arg("run").arg("--release").arg("--manifest-path").arg(
277280
manifest_path

0 commit comments

Comments
 (0)