diff options
author | Ed Maste <emaste@freebsd.org> | 2013-08-30 14:05:22 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2013-08-30 14:05:22 +0000 |
commit | fcdab16d244324482d8cd52fd047a7de1c51d486 (patch) | |
tree | a9c6717ab891f781d8237176035be123a11118a8 /lldb/test/expression_command | |
parent | 119ce5320228a89bd2f73935837ee49136a3c617 (diff) | |
download | bcm5719-llvm-fcdab16d244324482d8cd52fd047a7de1c51d486.tar.gz bcm5719-llvm-fcdab16d244324482d8cd52fd047a7de1c51d486.zip |
Expression evaluation works on FreeBSD after switch to MCJIT
http://www.llvm.org/pr16697
llvm-svn: 189668
Diffstat (limited to 'lldb/test/expression_command')
4 files changed, 0 insertions, 4 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py index a8b968b39ef..0bbf78c679e 100644 --- a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py +++ b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py @@ -26,7 +26,6 @@ class ExprCommandCallFunctionTestCase(TestBase): self.call_function() @dwarf_test - @expectedFailureFreeBSD # llvm.org/pr16697 @expectedFailureGcc # llvm.org/pr14437, fails with GCC 4.6.3 and 4.7.2 @expectedFailureIcc # llvm.org/pr14437, fails with ICC 13.1 def test_with_dwarf(self): diff --git a/lldb/test/expression_command/formatters/TestFormatters.py b/lldb/test/expression_command/formatters/TestFormatters.py index 70ed269a2a4..8f312f6e3cb 100644 --- a/lldb/test/expression_command/formatters/TestFormatters.py +++ b/lldb/test/expression_command/formatters/TestFormatters.py @@ -25,7 +25,6 @@ class ExprFormattersTestCase(TestBase): self.buildDsym() self.do_my_test() - @expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function' @dwarf_test def test_with_dwarf(self): """Test expr + formatters for good interoperability.""" diff --git a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py index 2165b3eeb93..ed8501b334b 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 - @expectedFailureFreeBSD # llvm.org/pr16697 @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.""" diff --git a/lldb/test/expression_command/test/TestExprs.py b/lldb/test/expression_command/test/TestExprs.py index 363adf289db..422e05e3e2e 100644 --- a/lldb/test/expression_command/test/TestExprs.py +++ b/lldb/test/expression_command/test/TestExprs.py @@ -180,7 +180,6 @@ class BasicExprCommandsTestCase(TestBase): # rdar://problem/8686536 # CommandInterpreter::HandleCommand is stripping \'s from input for WantsRawCommand commands - @expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function' def test_expr_commands_can_handle_quotes(self): """Throw some expression commands with quotes at lldb.""" self.buildDefault() |