Commit 0b61f008 authored by achuith's avatar achuith Committed by Commit bot

Disable failing tests on chromeos.

BUG=404868
TEST=perf fyi bot

Review URL: https://codereview.chromium.org/508363002

Cr-Commit-Position: refs/heads/master@{#292300}
parent d1b26261
......@@ -28,7 +28,7 @@ class RasterizeAndRecordMicroUnitTest(page_test_test_case.PageTestTestCase):
self._options.start_wait_time = 0.0
self._options.report_detailed_results = True
@test.Disabled('win')
@test.Disabled('win', 'chromeos')
def testRasterizeAndRecordMicro(self):
ps = self.CreatePageSetFromFileInUnittestDataDir('blank.html')
measurement = rasterize_and_record_micro.RasterizeAndRecordMicro()
......
......@@ -127,7 +127,7 @@ class SmoothnessUnitTest(page_test_test_case.PageTestTestCase):
self.assertGreater(
mean_input_event_latency[0].GetRepresentativeNumber(), 0)
@test.Disabled('mac') # http://crbug.com/403903
@test.Disabled('mac', 'chromeos') # http://crbug.com/403903
def testSmoothnessForPageWithNoGesture(self):
ps = self.CreateEmptyPageSet()
ps.AddPage(AnimatedPage(ps))
......
......@@ -121,7 +121,7 @@ class CrOSScreenLockerTest(cros_test_case.CrOSTestCase):
util.WaitFor(lambda: not browser.oobe_exists, 10)
self.assertFalse(self._IsScreenLocked(browser))
@benchmark.Enabled('chromeos')
@benchmark.Disabled
def testScreenLock(self):
"""Tests autotestPrivate.screenLock"""
if self._is_guest:
......
......@@ -48,6 +48,7 @@ class ActionRunnerInteractionTest(tab_test_case.TabTestCase):
for attribute_name in interaction_kwargs:
self.assertTrue(getattr(records[0], attribute_name))
@benchmark.Disabled('chromeos')
def testIssuingMultipleMeasurementInteractionRecords(self):
self.VerifyIssuingInteractionRecords(is_fast=True)
self.VerifyIssuingInteractionRecords(is_responsive=True)
......
......@@ -6,6 +6,7 @@ import os
import sys
from telemetry import benchmark
from telemetry import decorators
from telemetry.core import util
from telemetry.core import wpr_modes
from telemetry.page import page as page_module
......@@ -142,6 +143,7 @@ class RecordWprUnitTests(tab_test_case.TabTestCase):
self.assertEqual('DidRunActions', record_page_test.page_test.func_calls[1])
self.assertEqual('ValidatePage', record_page_test.page_test.func_calls[2])
@decorators.Disabled('chromeos') # crbug.com/404868.
def testWprRecorderWithPageSet(self):
flags = []
mock_page_set = MockPageSet(url=self._url)
......
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