[Lldb-commits] [lldb] r320452 - [TestCppScope] This test now passes on Darwin.
Davide Italiano via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 11 18:32:49 PST 2017
Author: davide
Date: Mon Dec 11 18:32:49 2017
New Revision: 320452
URL: http://llvm.org/viewvc/llvm-project?rev=320452&view=rev
Log:
[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>
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=320452&r1=320451&r2=320452&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 Mon Dec 11 18:32:49 2017
@@ -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)
More information about the lldb-commits
mailing list