[Lldb-commits] [lldb] r181905 - Re-enable tests disabled due to llvm.org/pr14541

Daniel Malea daniel.malea at intel.com
Wed May 15 10:55:13 PDT 2013


Author: dmalea
Date: Wed May 15 12:55:12 2013
New Revision: 181905

URL: http://llvm.org/viewvc/llvm-project?rev=181905&view=rev
Log:
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)


Modified:
    lldb/trunk/test/functionalities/platform/TestPlatformCommand.py
    lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py
    lldb/trunk/test/python_api/hello_world/TestHelloWorld.py

Modified: lldb/trunk/test/functionalities/platform/TestPlatformCommand.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/platform/TestPlatformCommand.py?rev=181905&r1=181904&r2=181905&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/platform/TestPlatformCommand.py (original)
+++ lldb/trunk/test/functionalities/platform/TestPlatformCommand.py Wed May 15 12:55:12 2013
@@ -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'])

Modified: lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py?rev=181905&r1=181904&r2=181905&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py (original)
+++ lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py Wed May 15 12:55:12 2013
@@ -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"""

Modified: lldb/trunk/test/python_api/hello_world/TestHelloWorld.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/hello_world/TestHelloWorld.py?rev=181905&r1=181904&r2=181905&view=diff
==============================================================================
--- lldb/trunk/test/python_api/hello_world/TestHelloWorld.py (original)
+++ lldb/trunk/test/python_api/hello_world/TestHelloWorld.py Wed May 15 12:55:12 2013
@@ -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):





More information about the lldb-commits mailing list