blob: 94c90ba06f26bb2f133c79358b6a248df73a1c8f [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#pylint: disable-msg=C0111
from autotest_lib.client.bin import utils
from autotest_lib.client.common_lib import error
from autotest_lib.client.cros import chrome_test
class desktopui_WebRTC(chrome_test.PyAutoFunctionalTest):
version = 1
def run_once(self):
# Load virtual webcam driver for devices that don't have a webcam.
if utils.get_board() == 'stumpy':
utils.load_module('vivi')
try:
self.run_pyauto_functional(suite='WEBRTC')
except Exception as err:
raise error.TestFailRetry(err)