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 6a3807c + 50ba685 commit b0467dcCopy full SHA for b0467dc
collector/src/main.rs
@@ -88,6 +88,15 @@ impl ScenarioKind {
88
vec![ScenarioKind::Full]
89
}
90
91
+ fn is_incr(self) -> bool {
92
+ match self {
93
+ ScenarioKind::Full => false,
94
+ ScenarioKind::IncrFull | ScenarioKind::IncrUnchanged | ScenarioKind::IncrPatched => {
95
+ true
96
+ }
97
98
99
+
100
fn default() -> Vec<ScenarioKind> {
101
Self::all()
102
@@ -501,6 +510,9 @@ fn generate_cachegrind_diffs(
501
510
if let ScenarioKind::IncrPatched = scenario_kind {
502
511
continue;
503
512
513
+ if build_kind == BuildKind::Doc && scenario_kind.is_incr() {
514
+ continue;
515
504
516
let filename = |prefix, id| {
505
517
format!(
506
518
"{}-{}-{}-{:?}-{:?}",
0 commit comments