diff options
author | Matt Kopec <Matt.Kopec@intel.com> | 2013-04-26 20:04:24 +0000 |
---|---|---|
committer | Matt Kopec <Matt.Kopec@intel.com> | 2013-04-26 20:04:24 +0000 |
commit | 23a03de34dbbe84b0bdb32d82b1b39dda11748c4 (patch) | |
tree | d80bf4845144bb6aa6c4a388074c64b3fff6a0b2 | |
parent | 03ee04bef64cba234816eb7b1c280cbfa30e782e (diff) | |
download | bcm5719-llvm-23a03de34dbbe84b0bdb32d82b1b39dda11748c4.tar.gz bcm5719-llvm-23a03de34dbbe84b0bdb32d82b1b39dda11748c4.zip |
Mark tests as expected fail for Linux due to not being able to call/print c++ demangled functions in the global namespace (bugzilla 15854).
llvm-svn: 180623
-rw-r--r-- | lldb/test/expression_command/test/TestExprs.py | 1 | ||||
-rw-r--r-- | lldb/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/expression_command/test/TestExprs.py b/lldb/test/expression_command/test/TestExprs.py index 422e05e3e2e..2c00d58a02b 100644 --- a/lldb/test/expression_command/test/TestExprs.py +++ b/lldb/test/expression_command/test/TestExprs.py @@ -80,6 +80,7 @@ class BasicExprCommandsTestCase(TestBase): "a.out"]) # (const char *) $8 = 0x... "/Volumes/data/lldb/svn/trunk/test/expression_command/test/a.out" + @expectedFailureLinux # bugzilla 15854 @python_api_test def test_evaluate_expression_python(self): """Test SBFrame.EvaluateExpression() API for evaluating an expression.""" diff --git a/lldb/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py b/lldb/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py index 634c28c02ed..5b45851b637 100644 --- a/lldb/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py +++ b/lldb/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py @@ -17,6 +17,7 @@ class CPPStaticMethodsTestCase(TestBase): self.buildDsym() self.static_method_commands() + @expectedFailureLinux # bugzilla 15854 @dwarf_test def test_with_dwarf_and_run_command(self): """Test that functions with the same name are resolved correctly""" |