]> 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:29:06 +0000 (12:29 +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)

test/cmp_client_test.c

index 4b3b5f4929c94e458188a302c59232b72ec25b1b..405249010c0b820cf586bd4276bc34aa504b7cc0 100644 (file)
@@ -227,7 +227,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);
 }