diff --git a/tests/api/test_tls.c b/tests/api/test_tls.c index 6b24e4704d..d63498937b 100644 --- a/tests/api/test_tls.c +++ b/tests/api/test_tls.c @@ -1226,9 +1226,11 @@ int test_wolfSSL_alert_desc_string(void) static int record_size_skip_cipher(const char *name) { /* "ECDH-" matches static-ECDH ciphers ("ECDH-RSA-*", "ECDH-ECDSA-*") - * and not ECDHE-* because of the trailing '-'. */ + * and not ECDHE-* because of the trailing '-'. RENEGOTIATION-INFO is the + * TLS_EMPTY_RENEGOTIATION_INFO_SCSV signaling value, not a real cipher. */ static const char* const deny[] = { - "PSK", "SRP", "ANON", "NULL", "ECDSA", "ECDH-", "SM" + "PSK", "SRP", "ANON", "NULL", "ECDSA", "ECDH-", "SM", + "RENEGOTIATION-INFO" }; size_t i; for (i = 0; i < XELEM_CNT(deny); i++) {