From: Tomas Mraz Date: Fri, 12 Mar 2021 12:49:28 +0000 (+0100) Subject: acvp_test: Do not expect exact number of self tests X-Git-Tag: openssl-3.0.0-alpha14~294 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0413b7bb9cbc63859972451e7a554171c2c1fddb;p=thirdparty%2Fopenssl.git acvp_test: Do not expect exact number of self tests There might be more because internal instances of the DRBG might be initialized for the first time and thus self-tested as well. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/14497) --- diff --git a/test/acvp_test.c b/test/acvp_test.c index 02ef638ddd8..0be26f699b4 100644 --- a/test/acvp_test.c +++ b/test/acvp_test.c @@ -127,7 +127,7 @@ static int ecdsa_keygen_test(int id) || !TEST_int_gt(EVP_PKEY_keygen_init(ctx), 0) || !TEST_true(EVP_PKEY_CTX_set_group_name(ctx, tst->curve_name)) || !TEST_int_gt(EVP_PKEY_keygen(ctx, &pkey), 0) - || !TEST_int_eq(self_test_args.called, 3) + || !TEST_int_ge(self_test_args.called, 3) || !TEST_true(pkey_get_bn_bytes(pkey, OSSL_PKEY_PARAM_PRIV_KEY, &priv, &priv_len)) || !TEST_true(pkey_get_bn_bytes(pkey, OSSL_PKEY_PARAM_EC_PUB_X, &pubx,