]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
cmp_client_test.c: relax tight timeout value in test_exec_IR_ses_poll_no_timeout()
authorDr. David von Oheimb <dev@ddvo.net>
Thu, 3 Apr 2025 10:43:20 +0000 (12:43 +0200)
committerDr. David von Oheimb <dev@ddvo.net>
Wed, 9 Apr 2025 10:31:06 +0000 (12:31 +0200)
Fixes #27165

Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/27249)

(cherry picked from commit 46e14174da24a5f4fd5c480f1906371e2edd62cb)

test/cmp_client_test.c

index 208e0a176733a405a3e397752cc397fd24965ab5..3c654440252732be6789c2e6e002850b8987c119 100644 (file)
@@ -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);
 }