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/19 19:21:45 UTC

[1/3] git commit: Enabled glog signal handler for mesos tests.

Repository: mesos
Updated Branches:
  refs/heads/master e9643f477 -> 8575e0b6e


Enabled glog signal handler for mesos tests.


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

Branch: refs/heads/master
Commit: 0e180b8aaee87e3251c9c9d7d3e1dda32e895226
Parents: e9643f4
Author: Jie Yu <yu...@gmail.com>
Authored: Tue Aug 19 10:19:10 2014 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Tue Aug 19 10:21:35 2014 -0700

----------------------------------------------------------------------
 src/tests/main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/0e180b8a/src/tests/main.cpp
----------------------------------------------------------------------
diff --git a/src/tests/main.cpp b/src/tests/main.cpp
index 442be51..32a2456 100644
--- a/src/tests/main.cpp
+++ b/src/tests/main.cpp
@@ -89,7 +89,7 @@ int main(int argc, char** argv)
   }
 
   // Initialize logging.
-  logging::initialize(argv[0], flags);
+  logging::initialize(argv[0], flags, true);
 
   // Initialize gmock/gtest.
   testing::InitGoogleTest(&argc, argv);


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

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


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

Branch: refs/heads/master
Commit: 6172bdd924b8226d9846107d121560308c8bc828
Parents: 0e180b8
Author: Jie Yu <yu...@gmail.com>
Authored: Tue Aug 19 10:20:24 2014 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Tue Aug 19 10:21:41 2014 -0700

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


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


[3/3] git commit: Enabled glog signal handler for stout tests.

Posted by ji...@apache.org.
Enabled glog signal handler for stout tests.


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

Branch: refs/heads/master
Commit: 8575e0b6e8fda42bd9c9551f30ba5de6fa52547b
Parents: 6172bdd
Author: Jie Yu <yu...@gmail.com>
Authored: Tue Aug 19 10:20:51 2014 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Tue Aug 19 10:21:41 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/8575e0b6/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 17f4fd1..fa8093b 100644
--- a/3rdparty/libprocess/3rdparty/stout/tests/main.cpp
+++ b/3rdparty/libprocess/3rdparty/stout/tests/main.cpp
@@ -14,7 +14,7 @@ int main(int argc, char** argv)
   // Install default signal handler.
   // TODO(jieyu): We temporarily disable this since it causes some
   // flaky tests. Re-enable it once we find the root cause.
-  // installFailureSignalHandler();
+  installFailureSignalHandler();
 
   return RUN_ALL_TESTS();
 }