Add benchmark/benchmark.sh
Tests / Run-Tests (push) Successful in 4s Details

multiline-output
drunkendog 2023-09-16 21:08:39 +01:00
parent e8a9f073dd
commit 1011af3068
1 changed files with 23 additions and 0 deletions

23
benchmark/benchmark.sh Normal file
View File

@ -0,0 +1,23 @@
#!/bin/bash
set -e
mkdir temp
cd temp
for i in {1..1000}
do
cp "../benchmark-program-1.c" "benchmark-program-1-${i}.c"
done
for i in {1..1000}
do
for _ in {1..1000}
do
int_get=$RANDOM
echo "${int_get}\n$(int_get + 123)\n" >> "benchmark-program-1-${i}.cases"
done
done
TIMEFORMAT=%0R time $2 > /dev/null
cd ../ && rm -rf temp/