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.
1 parent 02928e1 commit b776483Copy full SHA for b776483
collector/src/compile/benchmark/mod.rs
@@ -523,6 +523,11 @@ impl Benchmark {
523
target: &Target,
524
already_computed: &hashbrown::HashSet<CompileTestCase>,
525
) -> bool {
526
+ // Keep this in sync with the logic in `Benchmark::measure`.
527
+ if scenario.is_incr() && profile.is_doc() {
528
+ return false;
529
+ }
530
+
531
let benchmark = database::Benchmark::from(self.name.0.as_str());
532
let profile = match profile {
533
Profile::Check => database::Profile::Check,
0 commit comments