File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
lldb/test/API/lang/swift/clangimporter Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ def test_extra_clang_flags(self):
25
25
VFS overlay using target.swift-extra-clang-flags.
26
26
"""
27
27
self .build ()
28
+
29
+ # Because the bridging header isn't precompiled or in a module
30
+ # we don't have DWARF type information for the types it contains.
31
+ self .expect ("settings set symbols.swift-typesystem-compiler-fallback true" )
32
+
28
33
# FIXME: this doesn't work if LLDB's build dir contains a space.
29
34
overlay = self .getBuildArtifact ('overlay.yaml' )
30
35
self .addTearDownHook (
Original file line number Diff line number Diff line change @@ -46,6 +46,10 @@ def dotest(self, remap):
46
46
log = self .getBuildArtifact ("types.log" )
47
47
self .runCmd ('log enable lldb types -f "%s"' % log )
48
48
49
+ # Because the bridging header isn't precompiled or in a module
50
+ # we don't have DWARF type information for the types it contains.
51
+ self .expect ("settings set symbols.swift-typesystem-compiler-fallback true" )
52
+
49
53
# To ensure the module is rebuilt remove the cache to avoid caching.
50
54
mod_cache = self .getBuildArtifact ("my-clang-modules-cache" )
51
55
if os .path .isdir (mod_cache ):
You can’t perform that action at this time.
0 commit comments