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.
2 parents 566f362 + 50deb10 commit 5ce8400Copy full SHA for 5ce8400
1 file changed
collector/src/bin/collector.rs
@@ -1534,8 +1534,7 @@ async fn run_benchmark_job(
1534
// Command launched before a benchmark suite. Useful to run an external root helper
1535
// that brings the system in a consistent state.
1536
if let Ok(pre_run) = std::env::var("RUSTC_PERF_PRE_RUN_COMMAND") {
1537
- // split by ascii unit separator
1538
- let commandline = pre_run.split('\x1f').collect::<Vec<_>>();
+ let commandline = pre_run.split(' ').collect::<Vec<_>>();
1539
let mut cmd = tokio::process::Command::new(commandline[0]);
1540
cmd.args(&commandline[1..]);
1541
cmd.status().await.map_err(|error| {
0 commit comments