diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-05-15 17:55:12 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-05-15 17:55:12 +0000 |
commit | 243b379aa165b2573e64a3546649f736c77c47d2 (patch) | |
tree | 1285e1c61a88f4363cc1b0daed902b6825d49794 /lldb | |
parent | 25d7eb0d9aae235df07f84082eb6a27a4ed7845e (diff) | |
download | bcm5719-llvm-243b379aa165b2573e64a3546649f736c77c47d2.tar.gz bcm5719-llvm-243b379aa165b2573e64a3546649f736c77c47d2.zip |
Re-enable tests disabled due to llvm.org/pr14541
- "platform process list" command works on Linux now
- "process attach -n" (attach to process by name also works on Linux now)
llvm-svn: 181905
Diffstat (limited to 'lldb')
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): |