mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-09 06:47:59 -06:00
11 lines
329 B
Rust
11 lines
329 B
Rust
//! Standalone benchmark binary for `forward_call_receive`.
|
|
|
|
#[path = "support/bench_common.rs"]
|
|
mod common;
|
|
|
|
fn main() {
|
|
let iterations = common::iterations_from_args(1_000);
|
|
let checksum = common::run_forward_call_receive(iterations);
|
|
println!("forward_call_receive iterations={iterations} checksum={checksum}");
|
|
}
|