mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
feat(bench): add --no-run
flag (#18433)
This commit is contained in:
parent
701099b2a9
commit
a29d88b43b
6 changed files with 36 additions and 0 deletions
|
@ -119,6 +119,7 @@ pub struct BenchOptions {
|
|||
pub files: FilesConfig,
|
||||
pub filter: Option<String>,
|
||||
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,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue