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 fbed308 + 2d15cdb commit 8137e74Copy full SHA for 8137e74
xtask/src/metrics.rs
@@ -117,11 +117,7 @@ impl Metrics {
117
) -> anyhow::Result<()> {
118
assert!(Path::new(path).exists(), "unable to find bench in {path}");
119
eprintln!("\nMeasuring analysis-stats/{name}");
120
- let output = cmd!(
121
- sh,
122
- "./target/release/rust-analyzer -q analysis-stats {path} --query-sysroot-metadata"
123
- )
124
- .read()?;
+ let output = cmd!(sh, "./target/release/rust-analyzer -q analysis-stats {path}").read()?;
125
for (metric, value, unit) in parse_metrics(&output) {
126
self.report(&format!("analysis-stats/{name}/{metric}"), value, unit.into());
127
}
0 commit comments