Skip to content

[lldb] Bump macOS versions to 11 on the TestPlaygrounds test #3675

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
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
2 changes: 1 addition & 1 deletion lldb/test/API/lang/swift/playgrounds/Contents.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let b = 5

a + b

@available(macOS 10.11, iOS 8.0, tvOS 8.0, watchOS 6.0, *) func newAPI() -> Int {
@available(macOS 11.1, iOS 8.0, tvOS 8.0, watchOS 6.0, *) func newAPI() -> Int {
return 11
}

Expand Down
2 changes: 1 addition & 1 deletion lldb/test/API/lang/swift/playgrounds/TestPlaygrounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_build_triple(self):
version = '7.0'
triple = '{}-{}-{}{}'.format(arch, vendor, os, version)
else:
triple = '{}-apple-macosx10.10'.format(platform.machine())
triple = '{}-apple-macosx11.0'.format(platform.machine())
return triple

def get_run_triple(self):
Expand Down