From 939ec18099ed25a332abf7bd46e6588f83be81c8 Mon Sep 17 00:00:00 2001 From: Daniel Malea Date: Sat, 5 Jan 2013 00:25:12 +0000 Subject: [PATCH] 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) llvm-svn: 171569 --- lldb/test/functionalities/platform/TestPlatformCommand.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lldb/test/functionalities/platform/TestPlatformCommand.py b/lldb/test/functionalities/platform/TestPlatformCommand.py index 5e558b7935ab..767ee31650ed 100644 --- a/lldb/test/functionalities/platform/TestPlatformCommand.py +++ b/lldb/test/functionalities/platform/TestPlatformCommand.py @@ -18,7 +18,7 @@ class PlatformCommandTestCase(TestBase): 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 @@ class PlatformCommandTestCase(TestBase): 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'])