[lldb] Re-enable TestVSCode_disconnect on Darwin

The test was disabled because it failed on the sanitized bot. I'm not
able to reproduce that locally. The test uses timeouts which could
explain why it was failing in the past.

Let's re-enable it and see what happens. If it fails again on
GreenDragon, rather than disabling it on Darwin altogether, we should
either increase the timeouts or skip it when run under ASan.
This commit is contained in:
Jonas Devlieghere 2023-08-25 10:29:14 -07:00
parent 636269f4fc
commit 1034688d58
No known key found for this signature in database
GPG Key ID: 49CC0BD90FDEED4D

View File

@ -23,7 +23,6 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
output = self.get_stdout()
self.assertTrue(output is None or len(output) == 0)
@skipIfDarwin
@skipIfWindows
@skipIfRemote
def test_launch(self):
@ -46,7 +45,6 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
time.sleep(1)
self.assertFalse(os.path.exists(program + ".side_effect"))
@skipIfDarwin
@skipIfWindows
@skipIfRemote
@expectedFailureNetBSD