Remove expectedFailureFreeBSD for passing pexpect tests

These tests work when run locally. They had been occasionally failing
on the FreeBSD buildbot due to pexpect issues. That buildbot is
currently down, and I expect the replacement will not have this issue.

llvm.org/pr22784

llvm-svn: 246490
This commit is contained in:
Ed Maste 2015-08-31 21:37:15 +00:00
parent 4da0e12968
commit 8bb3d04adc
4 changed files with 0 additions and 4 deletions

View File

@ -11,7 +11,6 @@ class CommandRegexTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureFreeBSD("llvm.org/pr22784: pexpect failing on the FreeBSD buildbot")
@expectedFailureHostWindows("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."""

View File

@ -12,7 +12,6 @@ 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")
@expectedFailureLinux("llvm.org/pr23475") # Test occasionally times out on the Linux build bot
@skipIfLinux # Test occasionally times out on the Linux build bot

View File

@ -11,7 +11,6 @@ class TestFormats(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureFreeBSD("llvm.org/pr22784: pexpect failing on the FreeBSD buildbot")
@expectedFailureHostWindows("llvm.org/pr22274: need a pexpect replacement for windows")
def test_formats(self):
"""Test format string functionality."""

View File

@ -22,7 +22,6 @@ class SingleQuoteInCommandLineTestCase(TestBase):
except:
pass
@expectedFailureFreeBSD("llvm.org/pr22784: pexpect failing on the FreeBSD buildbot")
@expectedFailureHostWindows("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."""