Skip to content

Commit

Permalink
extend buffersize test to cover 2KiB-128MiB
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Dreik committed Feb 3, 2025
1 parent 3752a77 commit c9f1dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testcases/checksum_buffersize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dbgecho "check so all buffersizes behave the same"
for checksumtype in sha256; do
i=1
while :; do
if [ $i -gt 128 ]; then
if [ $i -gt 65536 ]; then
break
fi
i="$((i * 2))"
Expand Down

0 comments on commit c9f1dfa

Please sign in to comment.