Windows: Enabled `curl_uri_fetcher.cpp` tests.

These work now that `curl` is available on Windows.

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


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

Branch: refs/heads/master
Commit: d4bfd8b1ff9ccb1f92630a0873029501997ac0a1
Parents: 2b80a7a
Author: Jeff Coffler <j...@taltos.com>
Authored: Thu Feb 8 15:21:35 2018 -0800
Committer: Andrew Schwartzmeyer <and...@schwartzmeyer.com>
Committed: Thu Feb 8 15:32:29 2018 -0800

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/d4bfd8b1/src/tests/uri_fetcher_tests.cpp
----------------------------------------------------------------------
diff --git a/src/tests/uri_fetcher_tests.cpp b/src/tests/uri_fetcher_tests.cpp
index 8a40f46..0acb854 100644
--- a/src/tests/uri_fetcher_tests.cpp
+++ b/src/tests/uri_fetcher_tests.cpp
@@ -93,7 +93,7 @@ protected:
 };
 
 
-TEST_F_TEMP_DISABLED_ON_WINDOWS(CurlFetcherPluginTest, CURL_ValidUri)
+TEST_F(CurlFetcherPluginTest, CURL_ValidUri)
 {
   URI uri = uri::http(
       stringify(server.self().address.ip),
@@ -112,7 +112,7 @@ TEST_F_TEMP_DISABLED_ON_WINDOWS(CurlFetcherPluginTest, 
CURL_ValidUri)
 }
 
 
-TEST_F_TEMP_DISABLED_ON_WINDOWS(CurlFetcherPluginTest, CURL_InvalidUri)
+TEST_F(CurlFetcherPluginTest, CURL_InvalidUri)
 {
   URI uri = uri::http(
       stringify(server.self().address.ip),
@@ -130,7 +130,7 @@ TEST_F_TEMP_DISABLED_ON_WINDOWS(CurlFetcherPluginTest, 
CURL_InvalidUri)
 
 
 // This test verifies invoking 'fetch' by plugin name.
-TEST_F_TEMP_DISABLED_ON_WINDOWS(CurlFetcherPluginTest, CURL_InvokeFetchByName)
+TEST_F(CurlFetcherPluginTest, CURL_InvokeFetchByName)
 {
   URI uri = uri::http(
       stringify(server.self().address.ip),

Reply via email to