diff options
author | Richard Levitte <levitte@openssl.org> | 2021-06-09 11:00:00 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2021-06-15 16:21:32 +0200 |
commit | 5d8ad7d385f1be0d2ef6fd3bfc91debdf3835c96 (patch) | |
tree | a75e4853592a8370a5254f7d607388fddd4c76dd | |
parent | DECODER & ENCODER: Add better tracing (diff) | |
download | openssl-5d8ad7d385f1be0d2ef6fd3bfc91debdf3835c96.tar.xz openssl-5d8ad7d385f1be0d2ef6fd3bfc91debdf3835c96.zip |
test/evp_extra_test.c: Peek at the error instead of getting it.
If there is an error report, we want to get it printed too.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15604)
-rw-r--r-- | test/evp_extra_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 33bb698ff3..f10e0077ec 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -1294,7 +1294,7 @@ static int test_EVP_PKCS82PKEY_wrong_tag(void) || !TEST_int_gt(BIO_get_mem_data(membio, &membuf), 0) || !TEST_ptr(p8inf = d2i_PKCS8_PRIV_KEY_INFO_bio(membio, NULL)) || !TEST_ptr(pkey2 = EVP_PKCS82PKEY(p8inf)) - || !TEST_int_eq(ERR_get_error(), 0)) { + || !TEST_int_eq(ERR_peek_last_error(), 0)) { goto done; } |