aboutsummaryrefslogtreecommitdiff
path: root/src/crates
diff options
context:
space:
mode:
authorAria Shrimpton <me@aria.rip>2024-03-04 13:13:12 +0000
committerAria Shrimpton <me@aria.rip>2024-03-04 13:13:12 +0000
commit9d09f8605abb54acf9ed91d026f0c4888acb92e3 (patch)
tree89b76f51f3ea923e0ac00e843cfd09cfc647ee3f /src/crates
parent934a6f67af4de1abfbd1c373ad5de0556e687f21 (diff)
tune to avoid benchmark timeouts when profiling
Diffstat (limited to 'src/crates')
-rw-r--r--src/crates/candelabra/src/profiler/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crates/candelabra/src/profiler/mod.rs b/src/crates/candelabra/src/profiler/mod.rs
index aa53d6c..ecfef7b 100644
--- a/src/crates/candelabra/src/profiler/mod.rs
+++ b/src/crates/candelabra/src/profiler/mod.rs
@@ -169,7 +169,7 @@ impl State {
let child = Command::new("cargo")
.current_dir(&project.source_dir)
- .args(["bench", "--bench", name, "--", "--profile-time", "5"])
+ .args(["bench", "--bench", name, "--", "--profile-time", "10"])
.env("PROFILER_OUT_DIR", profiler_out_dir.as_ref()) // Where profiler info gets outputted
.stdout(Stdio::piped())
.stderr(if log_enabled!(Level::Debug) {