mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
13 lines
264 B
Bash
Executable File
13 lines
264 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Uncomment to test with an active terminal state.
|
|
# ARGS=" --terminal"
|
|
|
|
hyperfine \
|
|
--warmup 10 \
|
|
-n new \
|
|
"./zig-out/bin/bench-vt-insert-lines --mode=new${ARGS}" \
|
|
-n old \
|
|
"./zig-out/bin/bench-vt-insert-lines --mode=old${ARGS}"
|
|
|