mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 23:24:09 +00:00
9 lines
200 B
Bash
Executable file
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
|