bencher: change default durations

This commit is contained in:
Joakim Frostegård 2024-02-06 18:48:39 +01:00
parent e705c03981
commit 83acaf51f4

View file

@ -25,7 +25,7 @@ struct Args {
#[arg(long, default_value_t = Priority::Medium)] #[arg(long, default_value_t = Priority::Medium)]
min_priority: Priority, min_priority: Priority,
/// How long to run each load test for /// How long to run each load test for
#[arg(long, default_value_t = 90)] #[arg(long, default_value_t = 30)]
duration: usize, duration: usize,
/// Only include data for last N seconds of load test runs. /// Only include data for last N seconds of load test runs.
/// ///
@ -33,7 +33,7 @@ struct Args {
/// maximum throughput /// maximum throughput
/// ///
/// 0 = use data for whole run /// 0 = use data for whole run
#[arg(long, default_value_t = 30)] #[arg(long, default_value_t = 0)]
summarize_last: usize, summarize_last: usize,
#[command(subcommand)] #[command(subcommand)]
command: Command, command: Command,