Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Unified Diff: net/test/remote_test_server.cc

Issue 9837027: Disable OCSP tests on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix HasValue -> HasKey Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/url_request/url_request_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/remote_test_server.cc
diff --git a/net/test/remote_test_server.cc b/net/test/remote_test_server.cc
index df1b97934673a1d855de39edd84d899886c5ff3e..640a052c6649676e8b4b0e61c1d264d0716667e9 100644
--- a/net/test/remote_test_server.cc
+++ b/net/test/remote_test_server.cc
@@ -82,6 +82,12 @@ bool RemoteTestServer::Start() {
if (!GenerateArguments(&arguments_dict))
return false;
+ if (arguments_dict.HasKey("ocsp")) {
+ NOTIMPLEMENTED() << "OCSP on-demand generation is not supported. "
+ << "See http://crbug.com/119642.";
+ return false;
+ }
+
// Append the 'server-type' argument which is used by spawner server to
// pass right server type to Python test server.
arguments_dict.SetString("server-type", GetServerTypeString(type()));
« no previous file with comments | « no previous file | net/url_request/url_request_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698