summaryrefslogtreecommitdiff
path: root/TestScripts
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-05-01 12:18:11 -0400
committerJeffrey Walton <noloader@gmail.com>2021-05-01 12:18:11 -0400
commitadcc89c8755f7844f384d7e90c26ce11c8aa377c (patch)
treebfee0ffd799c2061be7d4b0e1c24a101a15f22f2 /TestScripts
parentf12b4416a03da19934d054a35b0e07ec149d03ec (diff)
downloadcryptopp-git-adcc89c8755f7844f384d7e90c26ce11c8aa377c.tar.gz
Fix CET and Specter tests for C++03
Diffstat (limited to 'TestScripts')
-rwxr-xr-xTestScripts/cryptest.sh26
1 files changed, 2 insertions, 24 deletions
diff --git a/TestScripts/cryptest.sh b/TestScripts/cryptest.sh
index aa5be07f..a0332b57 100755
--- a/TestScripts/cryptest.sh
+++ b/TestScripts/cryptest.sh
@@ -892,28 +892,6 @@ if [[ (-z "$WANT_BENCHMARKS") ]]; then
WANT_BENCHMARKS=1
fi
-# IBM XL C/C++ compiler fixups. Not sure why it fails to return non-0 on failure...
-if [[ "$XLC_COMPILER" -ne 0 ]]; then
- HAVE_CXX03=0
- HAVE_GNU03=0
- HAVE_CXX11=0
- HAVE_GNU11=0
- HAVE_CXX14=0
- HAVE_GNU14=0
- HAVE_CXX17=0
- HAVE_GNU17=0
- HAVE_CXX20=0
- HAVE_GNU20=0
- HAVE_OMP=0
- HAVE_CET=0
- HAVE_REPTOLINE=0
- HAVE_ASAN=0
- HAVE_BSAN=0
- HAVE_UBSAN=0
- HAVE_ANALYZER=0
- HAVE_LDGOLD=0
-fi
-
############################################
# System information
@@ -4417,7 +4395,7 @@ fi
############################################
# Control-flow Enforcement Technology (CET), c++03
-if [[ ("$HAVE_CXX11" -ne 0 && "$HAVE_CET" -ne 0) ]]; then
+if [[ ("$HAVE_CXX03" -ne 0 && "$HAVE_CET" -ne 0) ]]; then
############################################
# Debug build, CET, c++03
@@ -4478,7 +4456,7 @@ fi
############################################
# Specter, c++03
-if [[ ("$HAVE_CXX11" -ne 0 && "$HAVE_REPTOLINE" -ne 0) ]]; then
+if [[ ("$HAVE_CXX03" -ne 0 && "$HAVE_REPTOLINE" -ne 0) ]]; then
############################################
# Debug build, Specter, c++03