Commit 84a325cf authored by John Budorick's avatar John Budorick Committed by Commit Bot

Disable BrowserMinidumpTest.* on chromeos.

Bug: 1014754
Change-Id: I0e3e24f8c43d9835937f47e95ece0ca9f3efd82f
Tbr: bsheedy@chromium.org
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1864375Reviewed-by: default avatarJohn Budorick <jbudorick@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#706520}
parent d85469a5
......@@ -17,9 +17,9 @@ import py_utils
class BrowserMinidumpTest(tab_test_case.TabTestCase):
@decorators.Isolated
# ChromeOS and Android are currently hard coded to return None for minidump
# paths, so disable on those platforms.
@decorators.Disabled('android')
# Android is currently hard coded to return None for minidump paths.
# Flakes on chromeos: crbug.com/1014754
@decorators.Disabled('android', 'chromeos')
def testSymbolizeMinidump(self):
# Wait for the browser to restart fully before crashing
self._LoadPageThenWait('var sam = "car";', 'sam')
......@@ -92,7 +92,8 @@ class BrowserMinidumpTest(tab_test_case.TabTestCase):
self.assertTrue(crash_function in sections[4] or match is not None)
@decorators.Isolated
@decorators.Disabled('android')
# Flakes on chromeos: crbug.com/1014754
@decorators.Disabled('android', 'chromeos')
def testMultipleCrashMinidumps(self):
# Wait for the browser to restart fully before crashing
self._LoadPageThenWait('var cat = "dog";', 'cat')
......
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