decrease number of samples in go benchmark

pull/2136/head
merlin 2024-10-01 15:25:24 +03:00
parent ea1e13a660
commit 4293b25262
No known key found for this signature in database
GPG Key ID: 7EDDCEA6A90062E0
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ for i in "${!commits[@]}"; do
# Benchmark data will go there
bench_file="${benchmarks_dir}/${i}_${commit_message}.bench"
if ! go test -bench=. -count=25 >"$bench_file"; then
if ! go test -bench=. -count=10 >"$bench_file"; then
echo "Benchmarking failed for commit $commit"
exit 1
fi