1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 23:24:09 +00:00
zap/wrk/measure_all.sh

9 lines
200 B
Bash
Executable file

#! /usr/bin/env bash
SUBJECTS="zig go python sanic rust rust2 axum csharp cpp"
for S in $SUBJECTS; do
L="$S.perflog"
for R in 1 2 3 ; do
./wrk/measure.sh $S | tee -a $L
done
done