From 5c01b1115eb4795e9b794254511fe7f4d3f17f8d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 16 Feb 2022 14:45:18 -0500 Subject: [PATCH] Disable Analyzer tests. C++ is still not working. --- TestScripts/cryptest.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/TestScripts/cryptest.sh b/TestScripts/cryptest.sh index 01250c73..81b9b952 100755 --- a/TestScripts/cryptest.sh +++ b/TestScripts/cryptest.sh @@ -627,6 +627,7 @@ if [[ (-z "$HAVE_BSAN") ]]; then fi # Analyzer available in GCC 10.0, but C++ is not planned until GCC 11. +# Whoops, GCC 11 is not working for C++. Better disable it for now. # https://developers.redhat.com/blog/2020/03/26/static-analysis-in-gcc-10/ # and https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95031#c2. rm -f "${TMPDIR}/test.exe" &>/dev/null @@ -636,7 +637,8 @@ if [[ (-z "$HAVE_ANALYZER") ]]; then if [[ ("$?" -eq 0) ]]; then "${TMPDIR}/test.exe" &>/dev/null if [[ ("$?" -eq 0) ]]; then - HAVE_ANALYZER=1 + # HAVE_ANALYZER=1 + : fi fi fi