From 716cd1fed93808fe2b525050c2cf4837b198fa28 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 17 Dec 2016 07:56:37 -0500 Subject: [PATCH] Fix HAVE_CXX14/HAVE_CXX17 typo This looks like a copy/paste error that has mostly gone unnoticed because many compilers lack support for C++17 --- cryptest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptest.sh b/cryptest.sh index ef13c0be..daeb824c 100755 --- a/cryptest.sh +++ b/cryptest.sh @@ -3903,7 +3903,7 @@ fi ############################################ # Release build, Bounds Sanitizer, c++17 -if [[ ("$HAVE_CXX14" -ne "0" && "$HAVE_BOUNDS_SAN" -ne "0") ]]; then +if [[ ("$HAVE_CXX17" -ne "0" && "$HAVE_BOUNDS_SAN" -ne "0") ]]; then echo echo "************************************" | tee -a "$TEST_RESULTS" echo "Testing: Release, c++17, Bounds Sanitizer" | tee -a "$TEST_RESULTS"