[lldb] Skip two lldb tests on Windows because they are flaky

These tests work fine with VS2017, but become more flaky with VS2019 and the buildbot is about to get upgraded.

Differential Revision: https://reviews.llvm.org/D114907
This commit is contained in:
Stella Stamenova 2021-12-02 09:53:28 -08:00
parent ced5fd8dbf
commit c24860118a
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ class ThreadSpecificBreakPlusConditionTestCase(TestBase):
# hits break in another thread in testrun
@add_test_categories(['pyapi'])
@expectedFlakeyNetBSD
@skipIfWindows # This test is flaky on Windows
def test_python(self):
"""Test that we obey thread conditioned breakpoints."""
self.build()

View File

@ -89,6 +89,7 @@ class LLDBIteratorTestCase(TestBase):
self.assertEqual(yours[i], mine[i],
"ID of yours[{0}] and mine[{0}] matches".format(i))
@skipIfWindows # This test is flaky on Windows
def test_lldb_iter_frame(self):
"""Test iterator works correctly for SBProcess->SBThread->SBFrame."""
self.build()