[Lldb-commits] [lldb] r236857 - Add expectedFailureFreeBSD decorator for buildbot pexpect issue
Ed Maste
emaste at freebsd.org
Fri May 8 07:20:25 PDT 2015
Author: emaste
Date: Fri May 8 09:20:25 2015
New Revision: 236857
URL: http://llvm.org/viewvc/llvm-project?rev=236857&view=rev
Log:
Add expectedFailureFreeBSD decorator for buildbot pexpect issue
I'm not yet sure what's wrong with pexpect and I cannot reproduce this
problem locally. XFAIL these tests for now to reduce buildbot noise so
I can track down the remaining buildbot failures.
llvm.org/pr22784
Modified:
lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py
lldb/trunk/test/functionalities/connect_remote/TestConnectRemote.py
lldb/trunk/test/functionalities/format/TestFormats.py
lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py
Modified: lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py?rev=236857&r1=236856&r2=236857&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py (original)
+++ lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py Fri May 8 09:20:25 2015
@@ -11,6 +11,7 @@ class CommandRegexTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
+ @expectedFailureFreeBSD("llvm.org/pr22784: pexpect failing on the FreeBSD buildbot")
@expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
def test_command_regex(self):
"""Test a simple scenario of 'command regex' invocation and subsequent use."""
Modified: lldb/trunk/test/functionalities/connect_remote/TestConnectRemote.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/connect_remote/TestConnectRemote.py?rev=236857&r1=236856&r2=236857&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/connect_remote/TestConnectRemote.py (original)
+++ lldb/trunk/test/functionalities/connect_remote/TestConnectRemote.py Fri May 8 09:20:25 2015
@@ -12,6 +12,7 @@ class ConnectRemoteTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
+ @expectedFailureFreeBSD("llvm.org/pr22784: pexpect failing on the FreeBSD buildbot")
@expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
def test_connect_remote(self):
"""Test "process connect connect:://localhost:[port]"."""
Modified: lldb/trunk/test/functionalities/format/TestFormats.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/format/TestFormats.py?rev=236857&r1=236856&r2=236857&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/format/TestFormats.py (original)
+++ lldb/trunk/test/functionalities/format/TestFormats.py Fri May 8 09:20:25 2015
@@ -11,6 +11,7 @@ class TestFormats(TestBase):
mydir = TestBase.compute_mydir(__file__)
+ @expectedFailureFreeBSD("llvm.org/pr22784: pexpect failing on the FreeBSD buildbot")
@expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
def test_formats(self):
"""Test format string functionality."""
Modified: lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py?rev=236857&r1=236856&r2=236857&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py (original)
+++ lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py Fri May 8 09:20:25 2015
@@ -22,6 +22,7 @@ class SingleQuoteInCommandLineTestCase(T
except:
pass
+ @expectedFailureFreeBSD("llvm.org/pr22784: pexpect failing on the FreeBSD buildbot")
@expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
def test_lldb_invocation_with_single_quote_in_filename(self):
"""Test that 'lldb my_file_name' works where my_file_name is a string with a single quote char in it."""
More information about the lldb-commits
mailing list