[lldb/Test] Add skipIfReproducer for tests that diverge during replay

Add the skipIfReproducer decorator to the remaining tests that fail to
replay because the GDB remote packets diverge during replay. This is
*not* expected and should be fixed, but figuring out exactly what caused
the divergence has proven pretty difficult to track down.

I've marked these tests as skipped for now so we can get clean results
and detect new regressions. I have no evidence to believe that these
failures have the same root cause, so I've not assigned them a PR.
This commit is contained in:
Jonas Devlieghere
2020-04-21 14:36:31 -07:00
parent 400b6f2bc5
commit 1e566f6b47
13 changed files with 17 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ class ConditionalBreakTestCase(TestBase):
self.build()
self.do_conditional_break()
@skipIfReproducer # Unexpected packet during replay
def test_with_command(self):
"""Simulate a user using lldb commands to break on c() if called from a()."""
self.build()