Skip to content

Commit abe5abb

Browse files
committed
Fix a swift test that was incorrectly using IsDynamic.
The test asks for but does not get (because of bugs) a dynamic value. Then it asserts that the value IsDynamic. That wasn't right, it didn't get a dynamic value just a "wrapper" for the static value in this case.
1 parent b9dc2c1 commit abe5abb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lldb/test/API/lang/swift/expression/static/TestSwiftExpressionsInClassFunctions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ def test_expressions_in_class_functions(self):
7373
self.check_expression("self", "a.H<Int>")
7474
frame = threads[0].GetFrameAtIndex(0)
7575
lldbutil.check_variable(self, frame.FindVariable("self"),
76-
use_dynamic=True,
7776
# FIXME: This should be '@thick a.H<Swift.Int>.Type'
7877
# but valobj.GetDynamicValue(lldb.eDynamicCanRunTarget)
7978
# doesn't seem to do its job.

0 commit comments

Comments
 (0)