selftests/sgx: Ignore OpenSSL 3.0 deprecated functions warning
authorKristen Carlson Accardi <kristen@linux.intel.com>
Fri, 12 Aug 2022 18:07:13 +0000 (11:07 -0700)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 15 Aug 2022 22:50:07 +0000 (16:50 -0600)
OpenSSL 3.0 deprecates some of the functions used in the SGX
selftests, causing build errors on new distros. For now ignore
the warnings until support for the functions is no longer
available and mark FIXME so that it can be clear this should
be removed at some point.

Signed-off-by: Kristen Carlson Accardi <kristen@linux.intel.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/sgx/sigstruct.c

index 50c5ab1..a07896a 100644 (file)
 #include "defines.h"
 #include "main.h"
 
+/*
+ * FIXME: OpenSSL 3.0 has deprecated some functions. For now just ignore
+ * the warnings.
+ */
+#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+
 struct q1q2_ctx {
        BN_CTX *bn_ctx;
        BIGNUM *m;