Don't use ciphersuites for inflating the ClientHello in clienthellotest
[openssl.git] / test / evp_test.c
index 9de7fcca6e00c22c327ee1578ca4f8f305379cf7..b08114e827c2069335ed66fe7ab85e32b3747dd5 100644 (file)
@@ -1639,6 +1639,13 @@ static int kdf_test_init(EVP_TEST *t, const char *name)
     KDF_DATA *kdata;
     int kdf_nid = OBJ_sn2nid(name);
 
+#ifdef OPENSSL_NO_SCRYPT
+    if (strcmp(name, "scrypt") == 0) {
+        t->skip = 1;
+        return 1;
+    }
+#endif
+
     if (kdf_nid == NID_undef)
         kdf_nid = OBJ_ln2nid(name);