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

Side by Side Diff: courgette/ensemble_unittest.cc

Issue 8393032: Disable the Courgette ensemble unittest. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "courgette/base_test_unittest.h" 5 #include "courgette/base_test_unittest.h"
6 #include "courgette/courgette.h" 6 #include "courgette/courgette.h"
7 #include "courgette/streams.h" 7 #include "courgette/streams.h"
8 8
9 class EnsembleTest : public BaseTest { 9 class EnsembleTest : public BaseTest {
10 public: 10 public:
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 std::string src_bytes = FilesContents(src_ensemble); 61 std::string src_bytes = FilesContents(src_ensemble);
62 std::string tgt_bytes = FilesContents(tgt_ensemble); 62 std::string tgt_bytes = FilesContents(tgt_ensemble);
63 63
64 src_bytes = "aaabbbccc" + src_bytes + "dddeeefff"; 64 src_bytes = "aaabbbccc" + src_bytes + "dddeeefff";
65 tgt_bytes = "aaagggccc" + tgt_bytes + "dddeeefff"; 65 tgt_bytes = "aaagggccc" + tgt_bytes + "dddeeefff";
66 66
67 TestEnsemble(src_bytes, tgt_bytes); 67 TestEnsemble(src_bytes, tgt_bytes);
68 } 68 }
69 69
70 TEST_F(EnsembleTest, All) { 70 TEST_F(EnsembleTest, All) {
nsylvain 2011/10/26 00:30:03 Please just set the name to DISABLED_All. There i
71 PeEnsemble(); 71 // TODO(dgarrett)
72 // Disabled until we can figure out why it takes 7 minutes to run on
73 // windows build bots.
74 // PeEnsemble();
72 } 75 }
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