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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "sync/util/immutable.h" 5 #include "sync/util/immutable.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cstddef> 8 #include <cstddef>
9 #include <deque> 9 #include <deque>
10 #include <list> 10 #include <list>
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 "Vector"); 218 "Vector");
219 } 219 }
220 220
221 TEST_F(ImmutableTest, VectorSwapMemFnByRef) { 221 TEST_F(ImmutableTest, VectorSwapMemFnByRef) {
222 RunTokenContainerTest< 222 RunTokenContainerTest<
223 std::vector<Token>, 223 std::vector<Token>,
224 Immutable<std::vector<Token>, HasSwapMemFnByRef<std::vector<Token> > > >( 224 Immutable<std::vector<Token>, HasSwapMemFnByRef<std::vector<Token> > > >(
225 "VectorSwapMemFnByRef"); 225 "VectorSwapMemFnByRef");
226 } 226 }
227 227
228 TEST_F(ImmutableTest, Deque) { 228 // http://crbug.com/129128
229 #if defined(OS_WIN)
230 #define MAYBE_Deque DISABLED_Deque
231 #else
232 #define MAYBE_Deque Deque
233 #endif
234 TEST_F(ImmutableTest, MAYBE_Deque) {
229 RunTokenContainerTest<std::deque<Token>, Immutable<std::deque<Token> > >( 235 RunTokenContainerTest<std::deque<Token>, Immutable<std::deque<Token> > >(
230 "Deque"); 236 "Deque");
231 } 237 }
232 238
233 TEST_F(ImmutableTest, List) { 239 TEST_F(ImmutableTest, List) {
234 RunTokenContainerTest<std::list<Token>, Immutable<std::list<Token> > >( 240 RunTokenContainerTest<std::list<Token>, Immutable<std::list<Token> > >(
235 "List"); 241 "List");
236 } 242 }
237 243
238 TEST_F(ImmutableTest, Set) { 244 TEST_F(ImmutableTest, Set) {
239 RunTokenContainerTest<std::set<Token>, Immutable<std::set<Token> > >( 245 RunTokenContainerTest<std::set<Token>, Immutable<std::set<Token> > >(
240 "Set"); 246 "Set");
241 } 247 }
242 248
243 } // namespace 249 } // namespace
244 } // namespace browser_sync 250 } // namespace browser_sync
OLDNEW
« 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