Re-enable some locally passing tests on Linux and see how they behave on the buildbots.

llvm-svn: 190214
This commit is contained in:
Matt Kopec 2013-09-06 22:33:49 +00:00
parent a93f1028a0
commit 76d8abd173
5 changed files with 0 additions and 5 deletions

View File

@ -20,7 +20,6 @@ class Radar9673644TestCase(TestBase):
self.line = line_number(self.main_source, '// Set breakpoint here.') self.line = line_number(self.main_source, '// Set breakpoint here.')
# rdar://problem/9673664 # rdar://problem/9673664
@skipIfLinux # llvm.org/pr14805: expressions that require memory allocation evaluate incorrectly on Linux
def test_expr_commands(self): def test_expr_commands(self):
"""The following expression commands should just work.""" """The following expression commands should just work."""
self.buildDefault() self.buildDefault()

View File

@ -18,7 +18,6 @@ class CmdPythonTestCase(TestBase):
self.pycmd_tests () self.pycmd_tests ()
@dwarf_test @dwarf_test
@skipIfLinux # causes buildbot failures, skip until we can investigate it
def test_with_dwarf (self): def test_with_dwarf (self):
self.buildDwarf () self.buildDwarf ()
self.pycmd_tests () self.pycmd_tests ()

View File

@ -10,7 +10,6 @@ class ImportTestCase(TestBase):
mydir = os.path.join("functionalities", "command_script", "import") mydir = os.path.join("functionalities", "command_script", "import")
@python_api_test @python_api_test
@skipIfLinux # causes buildbot failures, skip until we can investigate it
def test_import_command(self): def test_import_command(self):
"""Import some Python scripts by path and test them""" """Import some Python scripts by path and test them"""
self.run_test() self.run_test()

View File

@ -40,7 +40,6 @@ class ConditionalBreakTestCase(TestBase):
self.simulate_conditional_break_by_user() self.simulate_conditional_break_by_user()
@dwarf_test @dwarf_test
@skipIfLinux # due to two assertion failures introduced by r174793: ProcessPOSIX.cpp:223 (assertion 'state == eStateStopped || state == eStateCrashed') and POSIXThread.cpp:254 (assertion 'bp_site')
def test_with_dwarf_command(self): def test_with_dwarf_command(self):
"""Simulate a user using lldb commands to break on c() if called from a().""" """Simulate a user using lldb commands to break on c() if called from a()."""
self.buildDwarf() self.buildDwarf()

View File

@ -20,7 +20,6 @@ class StdStringDataFormatterTestCase(TestBase):
self.buildDsym() self.buildDsym()
self.data_formatter_commands() self.data_formatter_commands()
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
@dwarf_test @dwarf_test
def test_with_dwarf_and_run_command(self): def test_with_dwarf_and_run_command(self):
"""Test data formatter commands.""" """Test data formatter commands."""