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

Unified Diff: chrome/test/perf/dromaeo_benchmark_uitest.cc

Issue 10836269: Disable DromaeoTest.DOMCorePerf on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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: chrome/test/perf/dromaeo_benchmark_uitest.cc
diff --git a/chrome/test/perf/dromaeo_benchmark_uitest.cc b/chrome/test/perf/dromaeo_benchmark_uitest.cc
index 6af08f40d9ad9009df46125f5f0e3cf2a0a08111..71a148f8801c9e4b2377481880e66ea0fdac5bcf 100644
--- a/chrome/test/perf/dromaeo_benchmark_uitest.cc
+++ b/chrome/test/perf/dromaeo_benchmark_uitest.cc
@@ -134,7 +134,13 @@ class DromaeoReferenceTest : public DromaeoTest {
}
};
-TEST_F(DromaeoTest, DOMCorePerf) {
+#if defined(OS_WIN)
+// http://crbug.com/134570 - is flaky on Win7 perf bot
+#define MAYBE_DOMCorePerf DISABLED_DOMCorePerf
+#else
+#define MAYBE_DOMCorePerf DOMCorePerf
+#endif
+TEST_F(DromaeoTest, MAYBE_DOMCorePerf) {
if (!CommandLine::ForCurrentProcess()->HasSwitch(kRunDromaeo))
return;
@@ -148,7 +154,7 @@ TEST_F(DromaeoTest, JSLibPerf) {
RunTest("jslib");
}
-TEST_F(DromaeoReferenceTest, DOMCorePerf) {
+TEST_F(DromaeoReferenceTest, MAYBE_DOMCorePerf) {
if (!CommandLine::ForCurrentProcess()->HasSwitch(kRunDromaeo))
return;
« 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