2018-12-12 13:27:21 -06:00
|
|
|
mod bench;
|
|
|
|
mod cli;
|
2018-11-16 08:45:59 -08:00
|
|
|
|
2019-03-22 11:39:25 -07:00
|
|
|
use crate::bench::do_bench_tps;
|
2018-03-04 01:21:40 -07:00
|
|
|
|
2018-02-28 10:07:54 -07:00
|
|
|
fn main() {
|
2018-12-14 12:36:50 -08:00
|
|
|
solana_logger::setup();
|
2018-11-16 08:45:59 -08:00
|
|
|
solana_metrics::set_panic_hook("bench-tps");
|
2018-03-03 21:15:42 -07:00
|
|
|
|
2018-12-12 13:27:21 -06:00
|
|
|
let matches = cli::build_args().get_matches();
|
|
|
|
|
|
|
|
let cfg = cli::extract_args(&matches);
|
|
|
|
|
2019-03-22 11:39:25 -07:00
|
|
|
do_bench_tps(cfg);
|
2018-09-06 14:20:01 -07:00
|
|
|
}
|