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

Unified Diff: tools/telemetry/telemetry/internal/actions/action_runner_unittest.py

Issue 1115383002: Disable failing telemetry unit tests on chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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 side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/internal/actions/action_runner_unittest.py
diff --git a/tools/telemetry/telemetry/internal/actions/action_runner_unittest.py b/tools/telemetry/telemetry/internal/actions/action_runner_unittest.py
index 08183fa1e2a1ac29aea10e28cef9a55f1d8948b6..edee114a473240b92cd49c6868bfaaf485ea904a 100644
--- a/tools/telemetry/telemetry/internal/actions/action_runner_unittest.py
+++ b/tools/telemetry/telemetry/internal/actions/action_runner_unittest.py
@@ -184,7 +184,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
action_runner.ClickElement('#notfound')
self.assertRaises(exceptions.EvaluateException, WillFail)
- @decorators.Disabled('android', 'debug') # crbug.com/437068
+ @decorators.Disabled('android', 'debug', # crbug.com/437068
+ 'chromeos') # crbug.com/483212
def testTapElement(self):
self.Navigate('page_with_clickables.html')
action_runner = action_runner_module.ActionRunner(self._tab,
@@ -207,7 +208,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
action_runner.TapElement('#notfound')
self.assertRaises(exceptions.EvaluateException, WillFail)
- @decorators.Disabled('android') # crbug.com/437065.
+ @decorators.Disabled('android', # crbug.com/437065.
+ 'chromeos') # crbug.com/483212.
def testScroll(self):
if not page_action.IsGestureSourceTypeSupported(
self._tab, 'touch'):
@@ -231,7 +233,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
self.assertTrue(action_runner.EvaluateJavaScript(
'document.body.scrollLeft') > 75)
- @decorators.Disabled('android') # crbug.com/437065.
+ @decorators.Disabled('android', # crbug.com/437065.
+ 'chromeos') # crbug.com/483212.
def testSwipe(self):
if not page_action.IsGestureSourceTypeSupported(
self._tab, 'touch'):
« no previous file with comments | « tools/telemetry/telemetry/core/tab_unittest.py ('k') | tools/telemetry/telemetry/internal/actions/drag_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698