Skip to content

Commit 2678460

Browse files
authored
Merge pull request #506 from apple/use-new-driver
use swift-driver to run suite
2 parents e0ebc68 + 79fc7ff commit 2678460

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

projects.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1186,14 +1186,28 @@
11861186
"scheme": "ReactiveExtensions-iOS",
11871187
"destination": "generic/platform=iOS",
11881188
"configuration": "Release",
1189-
"tags": "sourcekit-disabled"
1189+
"tags": "sourcekit-disabled",
1190+
"xfail": [
1191+
{
1192+
"issue": "rdar://problem/75437284",
1193+
"compatibility": ["5.1"],
1194+
"branch": ["main"]
1195+
}
1196+
]
11901197
},
11911198
{
11921199
"action": "BuildXcodeProjectScheme",
11931200
"project": "ReactiveExtensions.xcodeproj",
11941201
"scheme": "ReactiveExtensions-TestHelpers-iOS",
11951202
"destination": "generic/platform=iOS",
1196-
"configuration": "Release"
1203+
"configuration": "Release",
1204+
"xfail": [
1205+
{
1206+
"issue": "rdar://problem/75437284",
1207+
"compatibility": ["5.1"],
1208+
"branch": ["main"]
1209+
}
1210+
]
11971211
}
11981212
]
11991213
},

runner.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,7 @@ def main():
4242
xcodebuild_flags = args.add_xcodebuild_flags
4343
xcodebuild_flags += (' ' if xcodebuild_flags else '') + 'DEBUG_INFORMATION_FORMAT=dwarf'
4444

45-
# FIXME: using swift-driver in the source compatibility test suite
46-
# is blocked by rdar://75486433
4745
swift_flags = args.add_swift_flags
48-
swift_flags += (' ' if swift_flags else '') + '-disallow-use-new-driver'
4946

5047
index = json.loads(open(args.projects).read())
5148
result = project_future.ProjectListBuilder(

0 commit comments

Comments
 (0)