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

Side by Side Diff: chrome/browser/extensions/api/tab_capture/tab_capture_performancetest.cc

Issue 303203002: Disable tab capture tests as they're failing on chromium.perf. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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
« 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #if defined(OS_MACOSX) 7 #if defined(OS_MACOSX)
8 #include "base/mac/mac_util.h" 8 #include "base/mac/mac_util.h"
9 #endif 9 #endif
10 #include "base/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 // cannot get any better than (lower) 33.33 ms. 215 // cannot get any better than (lower) 33.33 ms.
216 EXPECT_TRUE(PrintResults(analyzer.get(), 216 EXPECT_TRUE(PrintResults(analyzer.get(),
217 test_name, 217 test_name,
218 "Capture", 218 "Capture",
219 "ms")); 219 "ms"));
220 } 220 }
221 }; 221 };
222 222
223 } // namespace 223 } // namespace
224 224
225 IN_PROC_BROWSER_TEST_P(TabCapturePerformanceTest, Performance) { 225 // crbug.com/377089
226 IN_PROC_BROWSER_TEST_P(TabCapturePerformanceTest, DISABLED_Performance) {
226 RunTest("TabCapturePerformance"); 227 RunTest("TabCapturePerformance");
227 } 228 }
228 229
229 // Note: First argument is optional and intentionally left blank. 230 // Note: First argument is optional and intentionally left blank.
230 // (it's a prefix for the generated test cases) 231 // (it's a prefix for the generated test cases)
231 INSTANTIATE_TEST_CASE_P( 232 INSTANTIATE_TEST_CASE_P(
232 , 233 ,
233 TabCapturePerformanceTest, 234 TabCapturePerformanceTest,
234 testing::Values( 235 testing::Values(
235 0, 236 0,
(...skipping 19 matching lines...) Expand all
255 TabCapturePerformanceTest, 256 TabCapturePerformanceTest,
256 testing::Values( 257 testing::Values(
257 kScalingTestBase | kScaleQualityFast, 258 kScalingTestBase | kScaleQualityFast,
258 kScalingTestBase | kScaleQualityGood, 259 kScalingTestBase | kScaleQualityGood,
259 kScalingTestBase | kScaleQualityBest, 260 kScalingTestBase | kScaleQualityBest,
260 kScalingTestBase | kScaleQualityFast | kSmallWindow, 261 kScalingTestBase | kScaleQualityFast | kSmallWindow,
261 kScalingTestBase | kScaleQualityGood | kSmallWindow, 262 kScalingTestBase | kScaleQualityGood | kSmallWindow,
262 kScalingTestBase | kScaleQualityBest | kSmallWindow)); 263 kScalingTestBase | kScaleQualityBest | kSmallWindow));
263 264
264 #endif // USE_AURA 265 #endif // USE_AURA
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