aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/benches/process_executor.rs
AgeCommit message (Collapse)Author
2026-08-18test(process-executor): benchmark execute_async with criterionnsfisis
The `single` group compares the argv form against the string form, which goes through an extra `/bin/sh -c`; the `concurrent` group varies the job count around `max_jobs` so the semaphore throttle is visible as a throughput knee. `execute_async`'s futures are `!Send`, so they run on a current-thread runtime and overlap only through `join_all` within a single task. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>