Skip to content

Commit b5ef2ef

Browse files
Merge pull request #9338 from adrian-prantl/diable-valid
Disable typesystem validation
2 parents 1b3ed00 + 69ec5a9 commit b5ef2ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/API/lang/swift/tagged_pointer/TestSwiftTaggedPointer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ class TestSwiftTaggedPointer(lldbtest.TestBase):
1616
@skipIf(setting=('symbols.swift-precise-compiler-invocation', 'true'))
1717
def test(self):
1818
self.build()
19-
self.expect('log enable lldb types')
19+
# On the bots only, Swift typesystem validation fails.
20+
self.runCmd("settings set symbols.swift-validate-typesystem false")
2021
target, process, thread, bkpt = lldbutil.run_to_source_breakpoint(
2122
self, 'break here', lldb.SBFileSpec('main.swift'))
2223

lldb/test/API/lang/swift/tagged_pointer/main.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ func main() {
1111
}
1212

1313
main()
14-

0 commit comments

Comments
 (0)