[Lldb-commits] [lldb] r171569 - /lldb/trunk/test/functionalities/platform/TestPlatformCommand.py

Daniel Malea daniel.malea at intel.com
Fri Jan 4 16:25:12 PST 2013


Author: dmalea
Date: Fri Jan  4 18:25:12 2013
New Revision: 171569

URL: http://llvm.org/viewvc/llvm-project?rev=171569&view=rev
Log:
Mark TestPlatformCommand (test_status) as expected to fail on Linux
- due to bugzilla 14806 (platform status command prints more information on Mac OS X than on Linux)


Modified:
    lldb/trunk/test/functionalities/platform/TestPlatformCommand.py

Modified: lldb/trunk/test/functionalities/platform/TestPlatformCommand.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/platform/TestPlatformCommand.py?rev=171569&r1=171568&r2=171569&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/platform/TestPlatformCommand.py (original)
+++ lldb/trunk/test/functionalities/platform/TestPlatformCommand.py Fri Jan  4 18:25:12 2013
@@ -18,7 +18,7 @@
         self.expect("platform list",
             patterns = ['^Available platforms:'])
 
-    @expectedFailureLinux # due to bugzilla 14541
+    @expectedFailureLinux # due to bugzilla 14541 -- Cannot list processes on Linux
     def test_process_list(self):
         self.expect("platform process list",
             substrs = ['PID', 'ARCH', 'NAME'])
@@ -28,6 +28,7 @@
         self.expect("platform process info", error=True,
             substrs = ['one or more process id(s) must be specified'])
 
+    @expectedFailureLinux # due to bugzilla 14806 -- "platform status" prints more information on Mac OS X than on Linux
     def test_status(self):
         self.expect("platform status",
             substrs = ['Platform', 'Triple', 'OS Version', 'Kernel', 'Hostname'])





More information about the lldb-commits mailing list