diff options
-rw-r--r-- | test/evp_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/evp_test.c b/test/evp_test.c index 67a818d98d..69ccb9739e 100644 --- a/test/evp_test.c +++ b/test/evp_test.c @@ -1989,7 +1989,8 @@ static int kdf_test_init(EVP_TEST *t, const char *name) EVP_KDF *kdf; #ifdef OPENSSL_NO_SCRYPT - if (strcmp(name, "scrypt") == 0) { + /* TODO(3.0) Replace with "scrypt" once aliases are supported */ + if (strcmp(name, "id-scrypt") == 0) { t->skip = 1; return 1; } |