Recognise VERBOSE and V as well as HARNESS_VERBOSE
[openssl.git] / test / ectest.c
index b0fbcdc6124ea0f129fafeddd8b638fa6bcf79a5..bbc7ed0ac9903f08aeb7cd257d56e8ed4e95b7ad 100644 (file)
@@ -1417,6 +1417,12 @@ static void internal_curve_test(void)
     for (n = 0; n < crv_len; n++) {
         EC_GROUP *group = NULL;
         int nid = curves[n].nid;
+        /*
+         * Skip for X25519 because low level operations such as EC_POINT_mul()
+         * are not supported for this curve
+         */
+        if (nid == NID_X25519)
+            continue;
         fprintf(stdout, "%s:\n", OBJ_nid2sn(nid));
         fflush(stdout);
         if ((group = EC_GROUP_new_by_curve_name(nid)) == NULL) {