mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
d24bf80e20
* feat(true/false): add benchmarks for startup performance Add benchmarks to evaluate true/false command performance, addressing GitHub issue #10837. Benchmarks include: - Function call benchmarks (measure uumain directly) * true_no_args, true_help, true_version, true_consecutive_calls - Process spawn benchmarks (measure real command startup) * true_spawn_no_args, true_spawn_help, true_spawn_version This allows comparison between hot path vs cold path performance and internal logic vs real-world startup time. * chore(true/false): reduce benchmarks to 2 essential cases --------- Co-authored-by: naoNao89 <naoNao89@users.noreply.github.com>