You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2014/08/17 07:03:45 UTC

[1/2] git commit: Disabled glog signal handler for stout tests.

Repository: mesos
Updated Branches:
  refs/heads/master 42d53ebe2 -> da720a812


Disabled glog signal handler for stout tests.

Review: https://reviews.apache.org/r/24783


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ba693cb5
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/ba693cb5
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/ba693cb5

Branch: refs/heads/master
Commit: ba693cb51bc44c62cc2536e0607369ab0f5d5c2a
Parents: 42d53eb
Author: Jie Yu <yu...@gmail.com>
Authored: Sat Aug 16 21:50:28 2014 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Sat Aug 16 21:50:57 2014 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/3rdparty/stout/tests/main.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/ba693cb5/3rdparty/libprocess/3rdparty/stout/tests/main.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/stout/tests/main.cpp b/3rdparty/libprocess/3rdparty/stout/tests/main.cpp
index 3bc26a3..17f4fd1 100644
--- a/3rdparty/libprocess/3rdparty/stout/tests/main.cpp
+++ b/3rdparty/libprocess/3rdparty/stout/tests/main.cpp
@@ -12,7 +12,9 @@ int main(int argc, char** argv)
   testing::InitGoogleMock(&argc, argv);
 
   // Install default signal handler.
-  installFailureSignalHandler();
+  // TODO(jieyu): We temporarily disable this since it causes some
+  // flaky tests. Re-enable it once we find the root cause.
+  // installFailureSignalHandler();
 
   return RUN_ALL_TESTS();
 }


[2/2] git commit: Disabled glog signal handler for libprocess tests.

Posted by ji...@apache.org.
Disabled glog signal handler for libprocess tests.

Review: https://reviews.apache.org/r/24784


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/da720a81
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/da720a81
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/da720a81

Branch: refs/heads/master
Commit: da720a8121168869f90b7224bd1db5dca7729f0f
Parents: ba693cb
Author: Jie Yu <yu...@gmail.com>
Authored: Sat Aug 16 21:50:41 2014 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Sat Aug 16 21:51:29 2014 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/src/tests/main.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/da720a81/3rdparty/libprocess/src/tests/main.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/tests/main.cpp b/3rdparty/libprocess/src/tests/main.cpp
index b0592a3..c88f857 100644
--- a/3rdparty/libprocess/src/tests/main.cpp
+++ b/3rdparty/libprocess/src/tests/main.cpp
@@ -19,7 +19,9 @@ int main(int argc, char** argv)
   process::initialize();
 
   // Install default signal handler.
-  installFailureSignalHandler();
+  // TODO(jieyu): We temporarily disable this since it causes some
+  // flaky tests. Re-enable it once we find the root cause.
+  // installFailureSignalHandler();
 
   // Add the libprocess test event listeners.
   ::testing::TestEventListeners& listeners =