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 5ff9940 commit 7d38790Copy full SHA for 7d38790
collector/src/main.rs
@@ -343,6 +343,11 @@ fn get_benchmarks(
343
benchmarks.push(Benchmark::new(name, path)?);
344
}
345
benchmarks.sort_by_key(|benchmark| benchmark.name.clone());
346
+
347
+ if benchmarks.is_empty() {
348
+ eprintln!("Warning: no benchmarks selected! Try less strict filters.");
349
+ }
350
351
Ok(benchmarks)
352
353
0 commit comments