2019-11-27 15:21:11 +00:00
|
|
|
#!/bin/sh
|
2019-04-10 21:02:21 +00:00
|
|
|
|
2020-09-21 17:52:00 +00:00
|
|
|
if [ "$#" -gt 2 -o "$#" -eq 0 ]; then
|
|
|
|
echo "Usage: driver.sh /path/to/fish [/path/to/other/fish]"
|
|
|
|
exit 1
|
2019-04-10 21:02:21 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
FISH_PATH=$1
|
2020-09-21 17:52:00 +00:00
|
|
|
FISH2_PATH=$2
|
2019-04-10 21:02:21 +00:00
|
|
|
BENCHMARKS_DIR=$(dirname "$0")/benchmarks
|
|
|
|
|
2021-12-19 10:08:18 +00:00
|
|
|
quote() {
|
|
|
|
# Single-quote the given string for a POSIX shell, except in common cases that don't need it.
|
|
|
|
printf %s "$1" |
|
|
|
|
sed "/[^[:alnum:]\/.-]/ {
|
|
|
|
s/'/'\\\''/g
|
|
|
|
s/^/'/
|
|
|
|
s/\$/'/
|
|
|
|
}"
|
|
|
|
}
|
|
|
|
|
2019-04-10 21:02:21 +00:00
|
|
|
for benchmark in "$BENCHMARKS_DIR"/*; do
|
2019-11-28 01:49:21 +00:00
|
|
|
basename "$benchmark"
|
2022-09-25 11:22:52 +00:00
|
|
|
# If we have hyperfine, use it first to warm up the cache
|
2019-11-27 15:21:11 +00:00
|
|
|
if command -v hyperfine >/dev/null 2>&1; then
|
2022-09-24 11:34:53 +00:00
|
|
|
cmd1="$(quote "${FISH_PATH}") --no-config $(quote "$benchmark")"
|
2020-09-21 17:52:00 +00:00
|
|
|
if [ -n "$FISH2_PATH" ]; then
|
2022-09-24 11:34:53 +00:00
|
|
|
cmd2="$(quote "${FISH2_PATH}") --no-config $(quote "$benchmark")"
|
2022-09-25 11:22:52 +00:00
|
|
|
hyperfine --warmup 3 "$cmd1" "$cmd2"
|
2020-09-21 17:52:00 +00:00
|
|
|
else
|
2022-09-25 11:22:52 +00:00
|
|
|
hyperfine --warmup 3 "$cmd1"
|
2020-09-21 17:52:00 +00:00
|
|
|
fi
|
2019-11-26 19:10:04 +00:00
|
|
|
fi
|
2022-09-25 11:22:52 +00:00
|
|
|
|
|
|
|
[ -n "$FISH2_PATH" ] && echo "$FISH_PATH"
|
|
|
|
"${FISH_PATH}" --print-rusage-self "$benchmark" > /dev/null
|
|
|
|
if [ -n "$FISH2_PATH" ]; then
|
|
|
|
echo "$FISH2_PATH"
|
|
|
|
"${FISH2_PATH}" --print-rusage-self "$benchmark" > /dev/null
|
|
|
|
fi
|
|
|
|
|
2019-04-10 21:02:21 +00:00
|
|
|
done
|
|
|
|
|