Skip to content

Commit

Permalink
Fix Valgrind detection in cryptest.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Nov 14, 2017
1 parent 4ec1f89 commit 8fee0bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cryptest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ fi

# Valgrind testing of C++03, C++11, C++14 and C++17 binaries. Valgrind tests take a long time...
if [[ (-z "$HAVE_VALGRIND") ]]; then
if [[ $(command -v CC 2>/dev/null) ]]; then
if [[ $(command -v valgrind 2>/dev/null) ]]; then
HAVE_VALGRIND=1
fi
fi
Expand Down

0 comments on commit 8fee0bb

Please sign in to comment.