Fix typo, change program count to 100 to reduce time spent on finding files
Tests / Run-Tests (push) Successful in 3s Details
Benchmarks / Run-Benchmarks (push) Failing after 33s Details

multiline-output
drunkendog 2023-09-16 21:29:44 +01:00
parent 3f9c5804e9
commit 294576333c
1 changed files with 4 additions and 4 deletions

View File

@ -4,17 +4,17 @@ set -e
mkdir temp
cd temp
for i in {1..1000}
for i in {1..100}
do
cp "../benchmark-program-1.c" "benchmark-program-1-${i}.c"
done
for i in {1..1000}
for i in {1..100}
do
for _ in {1..1000}
for _ in {1..10000}
do
int_get=$RANDOM
echo "${int_get}\n$(int_get + 123)\n" >> "benchmark-program-1-${i}.cases"
echo "${int_get}\n$((int_get + 123))\n" >> "benchmark-program-1-${i}.cases"
done
done