You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ne...@apache.org on 2017/05/22 23:43:10 UTC

mesos git commit: Disabled ProcessTest.THREADSAFE_Http2 on Windows.

Repository: mesos
Updated Branches:
  refs/heads/master 1c7ffbeb5 -> 98ce8aba8


Disabled ProcessTest.THREADSAFE_Http2 on Windows.

This test was enabled implicitly when we adopted a version of GMock that
is thread-safe on Windows, but it doesn't work yet -- disable it for
now.


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

Branch: refs/heads/master
Commit: 98ce8aba87f665aa2c4f17dab545db6be8f8313d
Parents: 1c7ffbe
Author: Neil Conway <ne...@gmail.com>
Authored: Mon May 22 16:41:35 2017 -0700
Committer: Neil Conway <ne...@gmail.com>
Committed: Mon May 22 16:42:45 2017 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/98ce8aba/3rdparty/libprocess/src/tests/process_tests.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/tests/process_tests.cpp b/3rdparty/libprocess/src/tests/process_tests.cpp
index 2d3544a..3a27517 100644
--- a/3rdparty/libprocess/src/tests/process_tests.cpp
+++ b/3rdparty/libprocess/src/tests/process_tests.cpp
@@ -1330,7 +1330,9 @@ TEST(ProcessTest, THREADSAFE_Http1)
 
 // Like 'http1' but uses the 'Libprocess-From' header. We can
 // also use http::post here since we expect a 202 response.
-TEST(ProcessTest, THREADSAFE_Http2)
+//
+// TODO(neilc): This test currently does not work on Windows (MESOS-7527).
+TEST_TEMP_DISABLED_ON_WINDOWS(ProcessTest, THREADSAFE_Http2)
 {
   RemoteProcess process;
   spawn(process);