diff options
author | Jim Ingham <jingham@apple.com> | 2016-10-05 01:09:43 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2016-10-05 01:09:43 +0000 |
commit | f5fe75a6e0c66d5bb81a6ffd8906d66cb7f34f2f (patch) | |
tree | 27c678b1c45a5bc2aed43d2aabd43b9f05472c45 /lldb/packages/Python/lldbsuite/test/lang/cpp | |
parent | 379359c53a3b0728b4706a58208e9e6520ba31c8 (diff) | |
download | bcm5719-llvm-f5fe75a6e0c66d5bb81a6ffd8906d66cb7f34f2f.tar.gz bcm5719-llvm-f5fe75a6e0c66d5bb81a6ffd8906d66cb7f34f2f.zip |
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.
llvm-svn: 283287
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py index ca6b27f1727..a11a2d5b935 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py @@ -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() |