You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2020/06/29 14:30:53 UTC

[celix] branch bugfix/zmq_wrong_sender_connections updated: Increases nr of tries in the pubsub test.

This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch bugfix/zmq_wrong_sender_connections
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/bugfix/zmq_wrong_sender_connections by this push:
     new f90e270  Increases nr of tries in the pubsub test.
f90e270 is described below

commit f90e270f285c97863083bc27570c038e733403a8
Author: Pepijn Noltes <pe...@gmail.com>
AuthorDate: Mon Jun 29 16:30:35 2020 +0200

    Increases nr of tries in the pubsub test.
    
    This is needed because from time to time zmq tests need a bit more time to run to completion.
---
 bundles/pubsub/test/test/test_runner.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bundles/pubsub/test/test/test_runner.cc b/bundles/pubsub/test/test/test_runner.cc
index 855de62..b279bfd 100644
--- a/bundles/pubsub/test/test/test_runner.cc
+++ b/bundles/pubsub/test/test/test_runner.cc
@@ -48,7 +48,7 @@ TEST_GROUP(PUBSUB_INT_GROUP) {
 };
 
 TEST(PUBSUB_INT_GROUP, recvTest) {
-    constexpr int TRIES = 25;
+    constexpr int TRIES = 40;
     constexpr int TIMEOUT = 250000;
     constexpr int MSG_COUNT = 100;