Skip to content

Commit

Permalink
remove limit
Browse files Browse the repository at this point in the history
  • Loading branch information
metelkin committed Jun 13, 2024
1 parent 1f3363b commit 405e1b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bash/make-summary.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ hetaCompilerVersion=$(npx heta --version)
echo " \"hetaCompilerVersion\": \"$hetaCompilerVersion\"," >> $base_dir/summary.json
started=$(date)
echo " \"started\": \"$started\"," >> $base_dir/summary.json
dirs=$(find ./cases/semantic/ -type d -regex '.*/[0-9]+' -print0 | xargs -0 -n1 basename | sort | head -n 100) # | head -n 100, find all directories with numbers and sort by name
dirs=$(find ./cases/semantic/ -type d -regex '.*/[0-9]+' -print0 | xargs -0 -n1 basename | sort | head -n 10000) # | head -n 100, find all directories with numbers and sort by name
totalCasesCount=$(echo "$dirs" | wc -l)
echo " \"totalCasesCount\": \"$totalCasesCount\"," >> $base_dir/summary.json

Expand Down

0 comments on commit 405e1b6

Please sign in to comment.