From: Dr. David von Oheimb Date: Thu, 3 Apr 2025 10:43:20 +0000 (+0200) Subject: cmp_client_test.c: relax tight timeout value in test_exec_IR_ses_poll_no_timeout() X-Git-Tag: openssl-3.4.2~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a14ada274ef290e8ef25b27bb72c3e7b93111e10;p=thirdparty%2Fopenssl.git cmp_client_test.c: relax tight timeout value in test_exec_IR_ses_poll_no_timeout() Fixes #27165 Reviewed-by: Bernd Edlinger Reviewed-by: Tom Cosgrove Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/27249) (cherry picked from commit 46e14174da24a5f4fd5c480f1906371e2edd62cb) --- diff --git a/test/cmp_client_test.c b/test/cmp_client_test.c index 208e0a17673..3c654440252 100644 --- a/test/cmp_client_test.c +++ b/test/cmp_client_test.c @@ -224,7 +224,8 @@ static int test_exec_IR_ses_poll_ok(void) static int test_exec_IR_ses_poll_no_timeout(void) { return test_exec_REQ_ses_poll(OSSL_CMP_PKIBODY_IR, checkAfter, - 2 /* pollCount */, checkAfter + 4, + 2 /* pollCount */, + checkAfter + 14, /* usually 4 is sufficient */ OSSL_CMP_PKISTATUS_accepted); }