diff options
3 files changed, 0 insertions, 3 deletions
diff --git a/lldb/test/functionalities/platform/TestPlatformCommand.py b/lldb/test/functionalities/platform/TestPlatformCommand.py index 767ee31650e..5e2dee5950d 100644 --- a/lldb/test/functionalities/platform/TestPlatformCommand.py +++ b/lldb/test/functionalities/platform/TestPlatformCommand.py @@ -18,7 +18,6 @@ class PlatformCommandTestCase(TestBase): self.expect("platform list", patterns = ['^Available platforms:']) - @expectedFailureLinux # due to bugzilla 14541 -- Cannot list processes on Linux def test_process_list(self): self.expect("platform process list", substrs = ['PID', 'ARCH', 'NAME']) diff --git a/lldb/test/functionalities/process_attach/TestProcessAttach.py b/lldb/test/functionalities/process_attach/TestProcessAttach.py index b6431f6ad02..6e33eaa342e 100644 --- a/lldb/test/functionalities/process_attach/TestProcessAttach.py +++ b/lldb/test/functionalities/process_attach/TestProcessAttach.py @@ -32,7 +32,6 @@ class ProcessAttachTestCase(TestBase): self.buildDsym() self.process_attach_by_name() - @expectedFailureLinux # due to bugzilla 14541 -- lldb is unable to attach to process by name @dwarf_test def test_attach_to_process_by_name_with_dwarf(self): """Test attach by process name""" diff --git a/lldb/test/python_api/hello_world/TestHelloWorld.py b/lldb/test/python_api/hello_world/TestHelloWorld.py index f6fc61ca2eb..3daf128ac23 100644 --- a/lldb/test/python_api/hello_world/TestHelloWorld.py +++ b/lldb/test/python_api/hello_world/TestHelloWorld.py @@ -67,7 +67,6 @@ class HelloWorldTestCase(TestBase): self.setTearDownCleanup(dictionary=self.d) self.hello_world_attach_with_name_api() - @expectedFailureLinux # due to bugzilla 14541 -- lldb is unable to attach to process by name @python_api_test @dwarf_test def test_with_dwarf_and_attach_to_process_with_name_api(self): |