aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2022-07-18 12:56:00 -0500
committerDenis Kenzior <denkenz@gmail.com>2022-07-26 20:44:00 -0500
commitf8f2d442da56500987f230bfed1b9f420cfd3428 (patch)
tree64528cae6c6b04f45b7ab67c00201c63c009ff28
parentc2b2de95d96b75f1b587c07df591174bb79bfc76 (diff)
unit: Skip ECDSA cipher suite tests
Since ECDSA sign operation is currently not supported, ECDSA in server mode cannot work. Skip tests for these cipher suites for now.
-rw-r--r--unit/test-tls.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/unit/test-tls.c b/unit/test-tls.c
index aee5b2e3..53d4f38e 100644
--- a/unit/test-tls.c
+++ b/unit/test-tls.c
@@ -1050,6 +1050,9 @@ int main(int argc, char *argv[])
struct tls_bulk_encryption_algorithm *alg = suite->encryption;
bool supported;
+ if (l_str_has_prefix(suite->name, "TLS_ECDHE_ECDSA"))
+ continue;
+
if (alg->cipher_type == TLS_CIPHER_AEAD)
supported = l_aead_cipher_is_supported(alg->l_aead_id);
else