Skip to content

Commit 5e6f4c4

Browse files
committed
[lldb] Remove old reference to swift-enable-cxx-interop setting (NFC)
The setting is now named `symbols.swift-enable-cxx-interop`.
1 parent 30e22b0 commit 5e6f4c4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lldb/test/API/lang/swift/cxx_interop/backward/expressions/TestSwiftBackwardInteropExpressions.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
Test that evaluating expressions works on backward interop mode.
43
"""
@@ -12,9 +11,9 @@ class TestSwiftBackwardInteropExpressions(TestBase):
1211
@swiftTest
1312
def test_func_step_in(self):
1413
self.build()
15-
self.runCmd('setting set target.experimental.swift-enable-cxx-interop true')
16-
_, _, _, _ = lldbutil.run_to_source_breakpoint(
17-
self, 'Break here', lldb.SBFileSpec('main.cpp'))
14+
lldbutil.run_to_source_breakpoint(
15+
self, "Break here", lldb.SBFileSpec("main.cpp")
16+
)
1817
self.expect('expr swiftFunc()', substrs=["Inside a Swift function"])
1918
self.expect('expr swiftClass.swiftMethod()', substrs=["Inside a Swift method"])
2019
self.expect('expr a::SwiftClass::swiftStaticMethod()', substrs=["In a Swift static method"])

0 commit comments

Comments
 (0)