Skip to content

Commit 6fd5356

Browse files
committed
Add --exclude-suffix CLI arg
This will be used to quickly exclude all binary size benchmarks.
1 parent 0bacca1 commit 6fd5356

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

collector/src/bin/collector.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,10 @@ struct LocalOptions {
512512
#[arg(long)]
513513
exclude: Option<String>,
514514

515+
/// Exclude all benchmarks matching a suffix in this comma-separated list
516+
#[arg(long)]
517+
exclude_suffix: Option<String>,
518+
515519
/// Include only benchmarks matching a prefix in this comma-separated list
516520
#[arg(long)]
517521
include: Option<String>,

0 commit comments

Comments
 (0)