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

Unified Diff: sync/util/immutable_unittest.cc

Issue 10388250: Disable failing test ImmutableTest.Deque on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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: sync/util/immutable_unittest.cc
diff --git a/sync/util/immutable_unittest.cc b/sync/util/immutable_unittest.cc
index aa0037b4aee4d1c7e13475f7f227b7501e1ff004..93211cc6a954bc767044fd8235ac6a82fe9d1412 100644
--- a/sync/util/immutable_unittest.cc
+++ b/sync/util/immutable_unittest.cc
@@ -225,7 +225,13 @@ TEST_F(ImmutableTest, VectorSwapMemFnByRef) {
"VectorSwapMemFnByRef");
}
-TEST_F(ImmutableTest, Deque) {
+// http://crbug.com/129128
+#if defined(OS_WIN)
+#define MAYBE_Deque DISABLED_Deque
+#else
+#define MAYBE_Deque Deque
+#endif
+TEST_F(ImmutableTest, MAYBE_Deque) {
RunTokenContainerTest<std::deque<Token>, Immutable<std::deque<Token> > >(
"Deque");
}
« 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