Skip to content

Commit 4a97d59

Browse files
authored
Merge pull request swiftlang#39552 from edymtt/dont-include-tests-for-backdeployconcurrency-product-5-5
[5.5] Don't include tests for back deploy concurrency product
2 parents 95dc169 + 2c7ee37 commit 4a97d59

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/attr/Inputs/access-note-gen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def main():
2525
sys.exit(1)
2626

2727
with io.open(sys.argv[1], mode='r', encoding='utf8') as input_file, \
28-
io.open(sys.argv[2], mode='w', encoding='utf8') as output_file, \
29-
io.open(sys.argv[3], mode='w', encoding='utf8') as access_notes_file:
28+
io.open(sys.argv[2], mode='w', encoding='utf8') as output_file, \
29+
io.open(sys.argv[3], mode='w', encoding='utf8') as access_notes_file:
3030

3131
# Add header to access notes file
3232
access_notes_file.write(u"""\

utils/swift_build_support/swift_build_support/products/backdeployconcurrency.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ def build(self, host_target):
7979
self.cmake_options.define('SWIFT_BUILD_SDK_OVERLAY:BOOL', False)
8080
self.cmake_options.define('SWIFT_BUILD_DYNAMIC_SDK_OVERLAY:BOOL', False)
8181
self.cmake_options.define('SWIFT_BUILD_STATIC_SDK_OVERLAY:BOOL', False)
82+
self.cmake_options.define('SWIFT_INCLUDE_TESTS:BOOL', False)
8283

8384
self.cmake_options.define('SWIFT_HOST_VARIANT_ARCH:STRING', arch)
8485
self.cmake_options.define('BUILD_STANDALONE:BOOL', True)

0 commit comments

Comments
 (0)