We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9e157f commit bd23b42Copy full SHA for bd23b42
.github/workflows/sightglass.yml
@@ -53,3 +53,5 @@ jobs:
53
54
- name: Test all
55
run: cargo test --verbose --all
56
+ env:
57
+ RUST_BACKTRACE: 1
crates/cli/src/benchmark.rs
@@ -398,7 +398,10 @@ impl BenchmarkCommand {
398
399
anyhow::ensure!(
400
output.status.success(),
401
- "benchmark subprocess did not exit successfully"
+ "benchmark subprocess did not exit successfully: {}\nstderr: {}\nstdout: {}",
402
+ output.status,
403
+ String::from_utf8_lossy(&output.stderr),
404
+ String::from_utf8_lossy(&output.stdout)
405
);
406
407
eprintln!(".");
0 commit comments