Changes have been pushed for the repository "fawkesrobotics/fawkes".

Clone:  https://github.com/fawkesrobotics/fawkes.git
Gitweb: https://github.com/fawkesrobotics/fawkes

The branch, common/freebsd-fix-tests has been updated
  discards  94d6c1fc6df80cd966127fd0adde3254b6329db7 (commit)
        to  16a09f8b27ac705cf251dd8d7cca5d366642f1f6 (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (94d6c1fc6df80cd966127fd0adde3254b6329db7)
            \
             N -- N -- N (16a09f8b27ac705cf251dd8d7cca5d366642f1f6)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

https://github.com/fawkesrobotics/fawkes/tree/common/freebsd-fix-tests

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- *Log* ---------------------------------------------------------------
commit 16a09f8b27ac705cf251dd8d7cca5d366642f1f6
Author:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
AuthorDate: Thu Feb 7 17:32:06 2019 +0100
Commit:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
CommitDate: Thu Feb 7 17:51:57 2019 +0100

    syncpoint: fix timeout issues in SeparateTimeoutTest

https://github.com/fawkesrobotics/fawkes/commit/16a09f8b2

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


- *Summary* -----------------------------------------------------------
 src/libs/syncpoint/tests/test_syncpoint.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


- *Diffs* -------------------------------------------------------------

- *commit* 16a09f8b27ac705cf251dd8d7cca5d366642f1f6 - - - - - - - - - -
Author:  Till Hofmann <hofm...@kbsg.rwth-aachen.de>
Date:    Thu Feb 7 17:32:06 2019 +0100
Subject: syncpoint: fix timeout issues in SeparateTimeoutTest

 src/libs/syncpoint/tests/test_syncpoint.cpp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

_Diff for modified files_:
diff --git a/src/libs/syncpoint/tests/test_syncpoint.cpp 
b/src/libs/syncpoint/tests/test_syncpoint.cpp
index 22f2a669f..0a5746022 100644
--- a/src/libs/syncpoint/tests/test_syncpoint.cpp
+++ b/src/libs/syncpoint/tests/test_syncpoint.cpp
@@ -1325,7 +1325,7 @@ TEST_F(SyncPointManagerTest, 
WaitForOneSeparateTimeoutTest)
   wait_for_one_params.thread_nr = 2;
   wait_for_one_params.num_wait_calls = 1;
   wait_for_one_params.timeout_sec = 0;
-  wait_for_one_params.timeout_nsec = 500000;
+  wait_for_one_params.timeout_nsec = 10000000;
   wait_for_one_params.status = PENDING;
   wait_for_one_params.sp_identifier = sp_identifier;
   pthread_create(&wait_for_one_thread, &attrs, start_waiter_thread,
@@ -1347,8 +1347,7 @@ TEST_F(SyncPointManagerTest, 
WaitForOneSeparateTimeoutTest)
     EXPECT_TRUE(wait_for_running(&params[i]));
   }
   EXPECT_EQ(RUNNING, wait_for_one_params.status);
-  EXPECT_TRUE(wait_for_finished(&wait_for_one_params,
-        2 * wait_for_one_params.timeout_sec, 2 * 
wait_for_one_params.timeout_nsec));
+  EXPECT_TRUE(wait_for_finished(&wait_for_one_params));
   for (uint i = 0; i < num_threads; i++) {
     EXPECT_EQ(RUNNING, params[i].status);
   }



_______________________________________________
fawkes-commits mailing list
fawkes-commits@lists.kbsg.rwth-aachen.de
https://lists.kbsg.rwth-aachen.de/listinfo/fawkes-commits

Reply via email to