Author: Jonas Devlieghere Date: 2020-06-29T07:48:09-07:00 New Revision: 6292702d1231378f86a0560a68603fd006911f2f
URL: https://github.com/llvm/llvm-project/commit/6292702d1231378f86a0560a68603fd006911f2f DIFF: https://github.com/llvm/llvm-project/commit/6292702d1231378f86a0560a68603fd006911f2f.diff LOG: [lldb/Test] Skip TestVSCode_disconnect on Darwin It's failing on the sanitized bot on GreenDragon. Added: Modified: lldb/test/API/tools/lldb-vscode/disconnect/TestVSCode_disconnect.py Removed: ################################################################################ diff --git a/lldb/test/API/tools/lldb-vscode/disconnect/TestVSCode_disconnect.py b/lldb/test/API/tools/lldb-vscode/disconnect/TestVSCode_disconnect.py index 2a4103a344a4..cc001e89196b 100644 --- a/lldb/test/API/tools/lldb-vscode/disconnect/TestVSCode_disconnect.py +++ b/lldb/test/API/tools/lldb-vscode/disconnect/TestVSCode_disconnect.py @@ -26,6 +26,7 @@ def disconnect_and_assert_no_output_printed(self): output = self.get_stdout() self.assertTrue(output is None or len(output) == 0) + @skipIfDarwin @skipIfWindows @skipIfRemote def test_launch(self): @@ -47,6 +48,7 @@ def test_launch(self): self.assertFalse(os.path.exists(program + ".side_effect")) + @skipIfDarwin @skipIfWindows @skipIfRemote def test_attach(self): _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
