mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 13:48:50 +00:00
Merge #7849
7849: Fix xflags fallout r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
8e7c42d1be
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ impl Metrics {
|
||||||
fn measure_analysis_stats_path(&mut self, name: &str, path: &str) -> Result<()> {
|
fn measure_analysis_stats_path(&mut self, name: &str, path: &str) -> Result<()> {
|
||||||
eprintln!("\nMeasuring analysis-stats/{}", name);
|
eprintln!("\nMeasuring analysis-stats/{}", name);
|
||||||
let output =
|
let output =
|
||||||
cmd!("./target/release/rust-analyzer analysis-stats --quiet --memory-usage {path}")
|
cmd!("./target/release/rust-analyzer --quiet analysis-stats --memory-usage {path}")
|
||||||
.read()?;
|
.read()?;
|
||||||
for (metric, value, unit) in parse_metrics(&output) {
|
for (metric, value, unit) in parse_metrics(&output) {
|
||||||
self.report(&format!("analysis-stats/{}/{}", name, metric), value, unit.into());
|
self.report(&format!("analysis-stats/{}/{}", name, metric), value, unit.into());
|
||||||
|
|
Loading…
Reference in a new issue