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

Unified Diff: tools/perf/measurements/repaint_unittest.py

Issue 2849513002: Disable measurements.repaint_unittest.RepaintUnitTest.testRepaint. (Closed)
Patch Set: Created 3 years, 8 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: tools/perf/measurements/repaint_unittest.py
diff --git a/tools/perf/measurements/repaint_unittest.py b/tools/perf/measurements/repaint_unittest.py
index ad26cacf5e0d383852752baf3bc7d68d208e6d2e..e6f20a14d8c46c5cf4ff1291ae8ed7ee27f9410b 100644
--- a/tools/perf/measurements/repaint_unittest.py
+++ b/tools/perf/measurements/repaint_unittest.py
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import unittest
+
from telemetry import decorators
from telemetry.page import page as page_module
from telemetry.testing import options_for_unittests
@@ -34,7 +36,8 @@ class RepaintUnitTest(page_test_test_case.PageTestTestCase):
self._options = options_for_unittests.GetCopy()
self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF
- @decorators.Disabled('chromeos') # crbug.com/483212
+ # Previously this test was disabled on chromeos, see crbug.com/483212.
+ @unittest.skip("flaky") # crbug.com/715962
def testRepaint(self):
ps = self.CreateEmptyPageSet()
ps.AddStory(TestRepaintPage(ps, ps.base_dir))
« 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