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

Unified Diff: telemetry/telemetry/internal/actions/loop_unittest.py

Issue 2988013003: Disable failing media unittests on chromeos. (Closed)
Patch Set: Update bug Created 3 years, 5 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: telemetry/telemetry/internal/actions/loop_unittest.py
diff --git a/telemetry/telemetry/internal/actions/loop_unittest.py b/telemetry/telemetry/internal/actions/loop_unittest.py
index 6438cac54e5abc9e4872576b3c292fc38ebe1320..8928b864ddf7be08e5fdd801acc750a9302810c4 100644
--- a/telemetry/telemetry/internal/actions/loop_unittest.py
+++ b/telemetry/telemetry/internal/actions/loop_unittest.py
@@ -19,7 +19,8 @@ class LoopActionTest(tab_test_case.TabTestCase):
tab_test_case.TabTestCase.setUp(self)
self.Navigate('video_test.html')
- @decorators.Disabled('android', 'linux') # crbug.com/418577
+ # crbug.com/749890
+ @decorators.Disabled('android', 'linux', 'chromeos')
def testLoopWithNoSelector(self):
"""Tests that with no selector Loop action loops first media element."""
action = loop.LoopAction(loop_count=2, selector='#video_1',
@@ -30,7 +31,8 @@ class LoopActionTest(tab_test_case.TabTestCase):
self.assertTrue(self._tab.EvaluateJavaScript(VIDEO_1_LOOP_CHECK))
self.assertFalse(self._tab.EvaluateJavaScript(AUDIO_1_LOOP_CHECK))
- @decorators.Disabled('android', 'linux') # crbug.com/418577
+ # crbug.com/749890
+ @decorators.Disabled('android', 'linux', 'chromeos')
def testLoopWithAllSelector(self):
"""Tests that Loop action loops all video elements with selector='all'."""
action = loop.LoopAction(loop_count=2, selector='all',
@@ -44,7 +46,8 @@ class LoopActionTest(tab_test_case.TabTestCase):
self.assertTrue(self._tab.EvaluateJavaScript(VIDEO_1_LOOP_CHECK))
self.assertTrue(self._tab.EvaluateJavaScript(AUDIO_1_LOOP_CHECK))
- @decorators.Disabled('android', 'linux') # crbug.com/418577
+ # crbug.com/749890
+ @decorators.Disabled('android', 'linux', 'chromeos')
def testLoopWaitForLoopTimeout(self):
"""Tests that wait_for_loop timeout_in_secondss if video does not loop."""
action = loop.LoopAction(loop_count=2, selector='#video_1',
« no previous file with comments | « telemetry/telemetry/internal/actions/load_media_unittest.py ('k') | telemetry/telemetry/internal/actions/play_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698