[Lldb-commits] [lldb] r283287 - This test is failing because there's a global symbol "C" in libsystem_c.dylib,
Jim Ingham via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 4 18:09:44 PDT 2016
Author: jingham
Date: Tue Oct 4 20:09:43 2016
New Revision: 283287
URL: http://llvm.org/viewvc/llvm-project?rev=283287&view=rev
Log:
This test is failing because there's a global symbol "C" in libsystem_c.dylib,
and that is defeating the lookup of the "struct C" here. Adding the bug for that.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py?rev=283287&r1=283286&r2=283287&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py Tue Oct 4 20:09:43 2016
@@ -11,7 +11,7 @@ class TestCppScopes(TestBase):
mydir = TestBase.compute_mydir(__file__)
- @expectedFailureDarwin
+ @expectedFailureDarwin(bugnumber="<rdar://problem/28623427>")
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24764")
def test_with_run_command(self):
self.build()
More information about the lldb-commits
mailing list