You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by mp...@apache.org on 2017/11/06 19:16:50 UTC

mesos git commit: Enabled `CredentialsTests` on Windows.

Repository: mesos
Updated Branches:
  refs/heads/master f701998d9 -> 0735c2d18


Enabled `CredentialsTests` on Windows.

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


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

Branch: refs/heads/master
Commit: 0735c2d184c98b2e5bc08703b0c000e9d431baba
Parents: f701998
Author: John Kordich <jo...@microsoft.com>
Authored: Mon Nov 6 11:16:13 2017 -0800
Committer: Michael Park <mp...@apache.org>
Committed: Mon Nov 6 11:16:13 2017 -0800

----------------------------------------------------------------------
 src/tests/credentials_tests.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/0735c2d1/src/tests/credentials_tests.cpp
----------------------------------------------------------------------
diff --git a/src/tests/credentials_tests.cpp b/src/tests/credentials_tests.cpp
index 7eb5abd..4ecb977 100644
--- a/src/tests/credentials_tests.cpp
+++ b/src/tests/credentials_tests.cpp
@@ -52,7 +52,7 @@ class CredentialsTest : public MesosTest {};
 
 // This test verifies that an authenticated slave is
 // granted registration by the master.
-TEST_F_TEMP_DISABLED_ON_WINDOWS(CredentialsTest, AuthenticatedSlave)
+TEST_F(CredentialsTest, AuthenticatedSlave)
 {
   Try<Owned<cluster::Master>> master = StartMaster();
   ASSERT_SOME(master);
@@ -72,7 +72,7 @@ TEST_F_TEMP_DISABLED_ON_WINDOWS(CredentialsTest, AuthenticatedSlave)
 // Test verifing well executed credential authentication
 // using text formatted credentials so as to test
 // backwards compatibility.
-TEST_F_TEMP_DISABLED_ON_WINDOWS(CredentialsTest, AuthenticatedSlaveText)
+TEST_F(CredentialsTest, AuthenticatedSlaveText)
 {
   string path = path::join(os::getcwd(), "credentials");
 
@@ -116,7 +116,7 @@ TEST_F_TEMP_DISABLED_ON_WINDOWS(CredentialsTest, AuthenticatedSlaveText)
 
 // Using JSON base file for authentication without
 // protobuf tools assistance.
-TEST_F_TEMP_DISABLED_ON_WINDOWS(CredentialsTest, AuthenticatedSlaveJSON)
+TEST_F(CredentialsTest, AuthenticatedSlaveJSON)
 {
   string path = path::join(os::getcwd(), "credentials");