Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #209 from darrenldl/dev
Browse files Browse the repository at this point in the history
Coverage test suite hash_tests fix
  • Loading branch information
darrenldl authored Jun 9, 2019
2 parents ba002d9 + e93d122 commit 7df5712
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cov_tests/hash_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ source kcov_blkar_fun.sh

exit_code=0

HASHES=("sha1" "sha256" "sha512" "blake2b-256" "blake2b-512")
HASHES=("sha1" "sha256" "sha512")
if [[ $(command -v b2sum) != "" ]]; then
HASHES[3]="blake2b-256"
HASHES[4]="blake2b-512"
fi

# Record the hashes
a[0]=$(sha1sum dummy | awk '{print $1}')
Expand Down

0 comments on commit 7df5712

Please sign in to comment.