Skip to content

Commit 93a4ce8

Browse files
committed
first changes to tests now that these private members are visible
1 parent ba443ff commit 93a4ce8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lldb/test/API/lang/swift/parseable_interfaces/dsym/TestSwiftInterfaceDsym.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_dsym_swiftinterface(self):
6464
lldbutil.check_variable(self, child_y, False, value="0")
6565

6666
child_x = var.GetChildMemberWithName("x") # MyPoint.x isn't public
67-
self.assertFalse(child_x.IsValid())
67+
self.assertTrue(child_x.IsValid())
6868

6969
# Expression evaluation using types from the .swiftinterface only
7070
# dylibs should work too

lldb/test/API/lang/swift/parseable_interfaces/shared/TestSwiftInterfaceNoDebugInfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def do_test(self):
129129
lldbutil.check_variable(self, child_y, False, value="0")
130130

131131
child_x = var.GetChildMemberWithName("x") # MyPoint.x isn't public
132-
self.assertFalse(child_x.IsValid())
132+
self.assertTrue(child_x.IsValid())
133133

134134
# Expression evaluation using types from the .swiftinterface only
135135
# dylibs should work too

lldb/test/API/lang/swift/parseable_interfaces/static/TestSwiftInterfaceStaticNoDebugInfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def do_test(self):
7575
lldbutil.check_variable(self, child_y, False, value="0")
7676

7777
child_x = var.GetChildMemberWithName("x") # MyPoint.x isn't public
78-
self.assertFalse(child_x.IsValid())
78+
self.assertTrue(child_x.IsValid())
7979

8080
# Expression evaluation using types from the .swiftinterface only
8181
# modules should work too

0 commit comments

Comments
 (0)