Commit cea1d623 authored by shadi@chromium.org's avatar shadi@chromium.org

Add --disable-audio to media_basic_playback pyauto test.

BUG=125424
NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/10831203

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150466 0039d316-1c4b-4281-b951-d872f2087c98
parent fc827168
......@@ -34,6 +34,13 @@ _EXPECTED_EVENTS_n = [('abort', 1), ('emptied', 1)] + _EXPECTED_EVENTS_0
class MediaConstrainedNetworkPerfTest(pyauto.PyUITest):
"""PyAuto test container. See file doc string for more information."""
def ExtraChromeFlags(self):
"""Run with --disable-audio to avoid issues with bots with no audio output.
TODO(shadi): Remove extra flag once issue (crbug.com/120749) is resolved.
"""
return pyauto.PyUITest.ExtraChromeFlags(self) + ['--disable-audio']
def testBasicPlaybackMatrix(self):
"""Launches HTML test which plays each video until end, seeks, and replays.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment