mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Before: module file's minimum deployment target is iOS 12.0: /path/to/FooKit.swiftmodule After: compiling for iOS 11.0, but module 'FooKit' has a minimum deployment target of iOS 12.0: /path/to/FooKit.swiftmodule Also tweak the "incompatible target" error to include the module name. rdar://problem/35546499
13 lines
805 B
Swift
13 lines
805 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -target x86_64-apple-macosx10.50 -emit-module -parse-stdlib %S/../Inputs/empty.swift -o %t
|
|
// RUN: not %target-swift-frontend -I %t -target x86_64-apple-macosx10.9 -typecheck %s 2>&1 | %FileCheck %s
|
|
// RUN: not %target-swift-frontend -I %t -target x86_64-apple-darwin13 -typecheck %s 2>&1 | %FileCheck %s
|
|
// RUN: %target-swift-frontend -I %t -typecheck %s -disable-target-os-checking
|
|
// RUN: %target-swift-frontend -target x86_64-apple-macosx10.50 -I %t -typecheck %s
|
|
// RUN: %target-swift-frontend -target x86_64-apple-macosx10.50.1 -I %t -typecheck %s
|
|
|
|
// REQUIRES: OS=macosx
|
|
|
|
// CHECK: :[[@LINE+1]]:8: error: compiling for OS X 10.9, but module 'empty' has a minimum deployment target of OS X 10.50: {{.*}}empty.swiftmodule{{$}}
|
|
import empty
|