Skip to content

use swift-driver to run suite #506

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -1186,14 +1186,28 @@
"scheme": "ReactiveExtensions-iOS",
"destination": "generic/platform=iOS",
"configuration": "Release",
"tags": "sourcekit-disabled"
"tags": "sourcekit-disabled",
"xfail": [
{
"issue": "rdar://problem/75437284",
"compatibility": ["5.1"],
"branch": ["main"]
}
]
},
{
"action": "BuildXcodeProjectScheme",
"project": "ReactiveExtensions.xcodeproj",
"scheme": "ReactiveExtensions-TestHelpers-iOS",
"destination": "generic/platform=iOS",
"configuration": "Release"
"configuration": "Release",
"xfail": [
{
"issue": "rdar://problem/75437284",
"compatibility": ["5.1"],
"branch": ["main"]
}
]
}
]
},
Expand Down
3 changes: 0 additions & 3 deletions runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,7 @@ def main():
xcodebuild_flags = args.add_xcodebuild_flags
xcodebuild_flags += (' ' if xcodebuild_flags else '') + 'DEBUG_INFORMATION_FORMAT=dwarf'

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

index = json.loads(open(args.projects).read())
result = project_future.ProjectListBuilder(
Expand Down