Skip to content

Commit

Permalink
[lldb][Test][Windows] Fix flaky address range API tests
Browse files Browse the repository at this point in the history
The new tests added in llvm#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.
  • Loading branch information
DavidSpickett authored and vg0204 committed May 29, 2024
1 parent c251251 commit 9749d4f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lldb/test/API/python_api/address_range/TestAddressRange.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ def setUp(self):
self.build()
exe = self.getBuildArtifact("a.out")

self.dbg.SetAsync(True)

self.target = self.dbg.CreateTarget(exe)
self.assertTrue(self.target, VALID_TARGET)
self.launch_info = self.target.GetLaunchInfo()
Expand Down

0 comments on commit 9749d4f

Please sign in to comment.