From a29d88b43bdc3bf08a30fdb64d35beef8839f246 Mon Sep 17 00:00:00 2001 From: Geert-Jan Zwiers Date: Sun, 26 Mar 2023 16:55:58 +0200 Subject: feat(bench): add `--no-run` flag (#18433) --- cli/args/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cli/args/mod.rs') diff --git a/cli/args/mod.rs b/cli/args/mod.rs index 338637455..bbf3f7efb 100644 --- a/cli/args/mod.rs +++ b/cli/args/mod.rs @@ -119,6 +119,7 @@ pub struct BenchOptions { pub files: FilesConfig, pub filter: Option, pub json: bool, + pub no_run: bool, } impl BenchOptions { @@ -134,6 +135,7 @@ impl BenchOptions { ), filter: bench_flags.filter, json: bench_flags.json, + no_run: bench_flags.no_run, }) } } -- cgit v1.2.3