Commit f8c62422 authored by Lei Zhang's avatar Lei Zhang Committed by Commit Bot

Disable flaky TabStackTraceTest.testCrashSymbols on Linux.

Also disable TabStackTraceTest.testCrashMinimalSymbols for the same
reason.

TBR=crouleau@chromium.org

Bug: 820282
Change-Id: Ib7096d1fdb97b3e870b82b3d41deb188989d8727
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1856850Reviewed-by: default avatarLei Zhang <thestig@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Cr-Commit-Position: refs/heads/master@{#705294}
parent ad13619d
...@@ -23,8 +23,8 @@ class TabStackTraceTest(tab_test_case.TabTestCase): ...@@ -23,8 +23,8 @@ class TabStackTraceTest(tab_test_case.TabTestCase):
self.assertTrue(c.exception.is_valid_dump) self.assertTrue(c.exception.is_valid_dump)
# Stack traces aren't working on Android yet. # Stack traces aren't working on Android yet.
# Disabled on mac, flaky: https://crbug.com/820282. # Disabled on Linux and Mac, flaky: https://crbug.com/820282.
@decorators.Enabled('linux') @decorators.Disabled('all')
def testCrashSymbols(self): def testCrashSymbols(self):
with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c: with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c:
self._tab.Navigate('chrome://crash', timeout=5) self._tab.Navigate('chrome://crash', timeout=5)
...@@ -33,9 +33,8 @@ class TabStackTraceTest(tab_test_case.TabTestCase): ...@@ -33,9 +33,8 @@ class TabStackTraceTest(tab_test_case.TabTestCase):
# Some platforms do not support full stack traces, this test requires only # Some platforms do not support full stack traces, this test requires only
# minimal symbols to be available. # minimal symbols to be available.
# Disabled on win due to crbug.com/706328. # Disabled on win due to crbug.com/706328.
# Disabled on mac, flaky: https://crbug.com/820282. # Disabled on Linux and Mac, flaky: https://crbug.com/820282.
@decorators.Enabled('linux') @decorators.Disabled('all')
@decorators.Disabled('mac', 'win')
def testCrashMinimalSymbols(self): def testCrashMinimalSymbols(self):
with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c: with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c:
self._tab.Navigate('chrome://crash', timeout=5) self._tab.Navigate('chrome://crash', timeout=5)
......
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