From 76d8abd1731c782e8583ffae4bb9de810bc16b9a Mon Sep 17 00:00:00 2001 From: Matt Kopec Date: Fri, 6 Sep 2013 22:33:49 +0000 Subject: [PATCH] Re-enable some locally passing tests on Linux and see how they behave on the buildbots. llvm-svn: 190214 --- .../expression_command/radar_9673664/TestExprHelpExamples.py | 1 - lldb/test/functionalities/command_script/TestCommandScript.py | 1 - lldb/test/functionalities/command_script/import/TestImport.py | 1 - .../functionalities/conditional_break/TestConditionalBreak.py | 1 - .../libstdcpp/string/TestDataFormatterStdString.py | 1 - 5 files changed, 5 deletions(-) diff --git a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py index ed8501b334b5..3ae2227f0e73 100644 --- a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py +++ b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py @@ -20,7 +20,6 @@ class Radar9673644TestCase(TestBase): self.line = line_number(self.main_source, '// Set breakpoint here.') # rdar://problem/9673664 - @skipIfLinux # llvm.org/pr14805: expressions that require memory allocation evaluate incorrectly on Linux def test_expr_commands(self): """The following expression commands should just work.""" self.buildDefault() diff --git a/lldb/test/functionalities/command_script/TestCommandScript.py b/lldb/test/functionalities/command_script/TestCommandScript.py index db29c6da3cf6..bbc9e783565c 100644 --- a/lldb/test/functionalities/command_script/TestCommandScript.py +++ b/lldb/test/functionalities/command_script/TestCommandScript.py @@ -18,7 +18,6 @@ class CmdPythonTestCase(TestBase): self.pycmd_tests () @dwarf_test - @skipIfLinux # causes buildbot failures, skip until we can investigate it def test_with_dwarf (self): self.buildDwarf () self.pycmd_tests () diff --git a/lldb/test/functionalities/command_script/import/TestImport.py b/lldb/test/functionalities/command_script/import/TestImport.py index 2f0121bd73d0..07b0b07d82db 100644 --- a/lldb/test/functionalities/command_script/import/TestImport.py +++ b/lldb/test/functionalities/command_script/import/TestImport.py @@ -10,7 +10,6 @@ class ImportTestCase(TestBase): mydir = os.path.join("functionalities", "command_script", "import") @python_api_test - @skipIfLinux # causes buildbot failures, skip until we can investigate it def test_import_command(self): """Import some Python scripts by path and test them""" self.run_test() diff --git a/lldb/test/functionalities/conditional_break/TestConditionalBreak.py b/lldb/test/functionalities/conditional_break/TestConditionalBreak.py index 806cb436fd61..ed0a8042d7ff 100644 --- a/lldb/test/functionalities/conditional_break/TestConditionalBreak.py +++ b/lldb/test/functionalities/conditional_break/TestConditionalBreak.py @@ -40,7 +40,6 @@ class ConditionalBreakTestCase(TestBase): self.simulate_conditional_break_by_user() @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): """Simulate a user using lldb commands to break on c() if called from a().""" self.buildDwarf() diff --git a/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py b/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py index 6e373606bf4b..52526d008379 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py @@ -20,7 +20,6 @@ class StdStringDataFormatterTestCase(TestBase): self.buildDsym() self.data_formatter_commands() - @skipIfLinux # No standard locations for libc++ on Linux, so skip for now @dwarf_test def test_with_dwarf_and_run_command(self): """Test data formatter commands."""