Skip to content

Commit 683a68d

Browse files
committed
Disable runtime unit test with use_os_stdlib
This test is failing in back deployment testing due to it failing to find _Concurrency. Disable the test until we can figure out a more targeted solution. rdar://78139218
1 parent 346500f commit 683a68d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/Unit/lit.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,8 @@ if 'use_os_stdlib' not in lit_config.params:
9090
# to handle dependencies of the dylibs loaded by `SwiftRuntimeTests`
9191
# (for which we cannot run `swift-rpathize.py`)
9292
config.environment['DYLD_LIBRARY_PATH'] = os.path.join(test_resource_dir, 'macosx')
93+
94+
if 'use_os_stdlib' in lit_config.params:
95+
# Runtime tests are failing in back-deployment due to missing _Concurrency.
96+
# rdar://78139218
97+
config.excludes += ['runtime']

0 commit comments

Comments
 (0)