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

Unified Diff: google_apis/gaia/oauth_request_signer_unittest.cc

Issue 2652363002: Disable OAuthRequestSignerTest.DecodeEncoded on OS_WIN (Closed)
Patch Set: Fix test name Created 3 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gaia/oauth_request_signer_unittest.cc
diff --git a/google_apis/gaia/oauth_request_signer_unittest.cc b/google_apis/gaia/oauth_request_signer_unittest.cc
index 30358e0aa542c71eac002175e39fb0c4e0644284..29df89386290c99adfcaa42333cf04248cfde225 100644
--- a/google_apis/gaia/oauth_request_signer_unittest.cc
+++ b/google_apis/gaia/oauth_request_signer_unittest.cc
@@ -54,7 +54,13 @@ TEST(OAuthRequestSignerTest, Encode) {
"%23a%40A%3EZtcQ%2Fyb.~%5EQ_%5DdaRT%3FffK%3E%40A%3AafWuZL");
}
-TEST(OAuthRequestSignerTest, DecodeEncoded) {
+// http://crbug.com/685352
+#if defined(OS_WIN)
+#define MAYBE_DecodeEncoded DISABLED_DecodeEncoded
+#else
+#define MAYBE_DecodeEncoded DecodeEncoded
+#endif
+TEST(OAuthRequestSignerTest, MAYBE_DecodeEncoded) {
srand(RANDOM_SEED);
static const int kIterations = 500;
static const int kLengthLimit = 500;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698