diff options
author | Davide Italiano <davide@freebsd.org> | 2017-12-12 02:32:49 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2017-12-12 02:32:49 +0000 |
commit | 4b13d8bdf3c46f6f07a7343d0365a9a88554e6bb (patch) | |
tree | f4499ccd847aadf557df3d2ba6f6fcb6bc28cde7 /lldb/packages/Python/lldbsuite/test/lang/cpp/scope | |
parent | 3ef5deb3a790daa46f8947bab33563001445197c (diff) | |
download | bcm5719-llvm-4b13d8bdf3c46f6f07a7343d0365a9a88554e6bb.tar.gz bcm5719-llvm-4b13d8bdf3c46f6f07a7343d0365a9a88554e6bb.zip |
[TestCppScope] This test now passes on Darwin.
I tested on x86-64 and Jason on embedded architectures.
This cleans up another couple of reported unexpected successes.
<rdar://problem/28623427>
llvm-svn: 320452
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/scope')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py | 5 |
1 files changed, 0 insertions, 5 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 ce270b1ea39..d5ff93f0cc1 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py @@ -15,11 +15,6 @@ class TestCppScopes(TestBase): def test_all_but_c(self): self.do_test(False) - # There's a global symbol in libsystem on Darwin that messes up - # the lookup of class C. Breaking that test out from the others - # since that is a odd failure, and I don't want it to mask the - # real purpose of this test. - @expectedFailureDarwin(bugnumber="<rdar://problem/28623427>") @expectedFailureAll(oslist=["windows"]) def test_c(self): self.do_test(True) |