Skip to content

Commit c81320b

Browse files
committed
add comment and radar link
1 parent d4afbfc commit c81320b

File tree

7 files changed

+8
-0
lines changed

7 files changed

+8
-0
lines changed

lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ def setUp(self):
2828

2929
def provider_data_formatter_commands(self):
3030
"""Test that the PythonObjectSyntheticChildProvider helper class works"""
31+
# rdar://84688015 SILModule::checkForLeaks can assert when used concurrently.
3132
self.runCmd("settings set target.experimental.swift-create-module-contexts-in-parallel false")
3233
self.runCmd("file " + self.getBuildArtifact("a.out"), CURRENT_EXECUTABLE_SET)
3334

lldb/test/API/lang/swift/clangimporter/dynamic_type_resolution_import_conflict/TestSwiftDynamicTypeResolutionImportConflict.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def test(self):
4545

4646
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
4747
% mod_cache)
48+
# rdar://84688015 SILModule::checkForLeaks can assert when used concurrently.
4849
self.runCmd("settings set target.experimental.swift-create-module-contexts-in-parallel false")
4950
self.build()
5051
target, _, _, _ = lldbutil.run_to_source_breakpoint(self, "break here",

lldb/test/API/lang/swift/clangimporter/headermap_conflict/TestSwiftHeadermapConflict.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def test(self):
3838
self.runCmd("settings set symbols.use-swift-dwarfimporter false")
3939
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
4040
% mod_cache)
41+
# rdar://84688015 SILModule::checkForLeaks can assert when used concurrently.
4142
self.runCmd("settings set target.experimental.swift-create-module-contexts-in-parallel false")
4243
self.build()
4344

lldb/test/API/lang/swift/clangimporter/macro_conflict/TestSwiftMacroConflict.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def test(self):
3838
self.runCmd('settings set symbols.use-swift-dwarfimporter false')
3939
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
4040
% mod_cache)
41+
# rdar://84688015 SILModule::checkForLeaks can assert when used concurrently.
4142
self.runCmd("settings set target.experimental.swift-create-module-contexts-in-parallel false")
4243
self.build()
4344

@@ -78,6 +79,7 @@ def test_with_dwarfimporter(self):
7879
self.runCmd('settings set symbols.use-swift-dwarfimporter true')
7980
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
8081
% mod_cache)
82+
# rdar://84688015 SILModule::checkForLeaks can assert when used concurrently.
8183
self.runCmd("settings set target.experimental.swift-create-module-contexts-in-parallel false")
8284

8385
self.build()

lldb/test/API/lang/swift/clangimporter/objcmain_conflicting_dylibs/TestSwiftObjCMainConflictingDylibs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def test(self):
3737

3838
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
3939
% mod_cache)
40+
# rdar://84688015 SILModule::checkForLeaks can assert when used concurrently.
4041
self.runCmd("settings set target.experimental.swift-create-module-contexts-in-parallel false")
4142
self.build()
4243
target, process, _, foo_breakpoint = lldbutil.run_to_source_breakpoint(

lldb/test/API/lang/swift/clangimporter/objcmain_conflicting_dylibs_failing_import/TestSwiftObjCMainConflictingDylibsFailingImport.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def test(self):
3737

3838
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
3939
% mod_cache)
40+
# rdar://84688015 SILModule::checkForLeaks can assert when used concurrently.
4041
self.runCmd("settings set target.experimental.swift-create-module-contexts-in-parallel false")
4142
self.build()
4243

lldb/test/API/lang/swift/clangimporter/rewrite_clang_paths/TestSwiftRewriteClangPaths.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def dotest(self, remap):
6060
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
6161
% mod_cache)
6262
self.runCmd("settings set symbols.use-swift-dwarfimporter false")
63+
# rdar://84688015 SILModule::checkForLeaks can assert when used concurrently.
6364
self.runCmd("settings set target.experimental.swift-create-module-contexts-in-parallel false")
6465

6566
botdir = os.path.realpath(self.getBuildArtifact("buildbot"))

0 commit comments

Comments
 (0)