Rename aquatic_load_tester to aquatic_bencher

This commit is contained in:
Joakim Frostegård 2023-12-28 17:42:25 +01:00
parent 6f9b0fce7b
commit af45feb911
10 changed files with 28 additions and 27 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "aquatic_load_tester"
description = "Automated load testing of aquatic and other BitTorrent trackers (Linux only)"
name = "aquatic_bencher"
description = "Automated benchmarking of aquatic and other BitTorrent trackers (Linux only)"
keywords = ["peer-to-peer", "torrent", "bittorrent"]
version.workspace = true
authors.workspace = true
@ -8,10 +8,11 @@ edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
readme.workspace = true
readme = "./README.md"
[[bin]]
name = "aquatic_load_tester"
name = "aquatic_bencher"
[features]
default = ["udp"]

View file

@ -13,10 +13,10 @@ struct Args {
/// executables on
#[arg(long, default_value_t = CpuMode::Split)]
cpu_mode: CpuMode,
/// Minimum number of tracker cpu cores to run load tests for
/// Minimum number of tracker cpu cores to run benchmarks for
#[arg(long)]
min_cores: Option<usize>,
/// Maximum number of tracker cpu cores to run load tests for
/// Maximum number of tracker cpu cores to run benchmarks for
#[arg(long)]
max_cores: Option<usize>,
#[command(subcommand)]