Skip to content

Commit 971f1aa

Browse files
committed
[lldb][Test][Windows] Fix flaky address range API tests
The new tests added in #92014 have been flaky on Linaro's Windows on Arm bot. They appear to be hitting a deadlock trying to clean up the test process. This only happens in async mode and I don't see why this test case needs async mode, so the simple workaround is to stick to sync mode.
1 parent 5c214eb commit 971f1aa

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lldb/test/API/python_api/address_range/TestAddressRange.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ def setUp(self):
1515
self.build()
1616
exe = self.getBuildArtifact("a.out")
1717

18-
self.dbg.SetAsync(True)
19-
2018
self.target = self.dbg.CreateTarget(exe)
2119
self.assertTrue(self.target, VALID_TARGET)
2220
self.launch_info = self.target.GetLaunchInfo()

0 commit comments

Comments
 (0)