Allow TLSv1.3 in a no-ec build
[oweals/openssl.git] / test / tls13ccstest.c
index d89354c142bec74d802d1553a5fabde2feae0160..d0bc43a8fa3b184fff2deba2d305e52e2ee9b274 100644 (file)
@@ -315,8 +315,13 @@ static int test_tls13ccs(int tst)
 
     if ((tst >= 3 && tst <= 5) || tst >= 9) {
         /* HRR handshake */
+#if defined(OPENSSL_NO_EC)
+        if (!TEST_true(SSL_CTX_set1_groups_list(sctx, "ffdhe3072")))
+            goto err;
+#else
         if (!TEST_true(SSL_CTX_set1_groups_list(sctx, "P-256")))
             goto err;
+#endif
     }
 
     s_to_c_fbio = BIO_new(bio_f_watchccs_filter());