mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +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
12 lines
767 B
Swift
12 lines
767 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -target x86_64-apple-ios50.50.1 -emit-module -parse-stdlib %S/../Inputs/empty.swift -o %t
|
|
// RUN: not %target-swift-frontend -parse-stdlib -target x86_64-apple-ios12 -I %t -typecheck %s 2>&1 | %FileCheck %s
|
|
// RUN: %target-swift-frontend -parse-stdlib -target x86_64-apple-ios12 -I %t -typecheck %s -disable-target-os-checking
|
|
// RUN: %target-swift-frontend -parse-stdlib -target x86_64-apple-ios50.50.1 -I %t -typecheck %s
|
|
// RUN: %target-swift-frontend -parse-stdlib -target x86_64-apple-ios50.51 -I %t -typecheck %s
|
|
|
|
// REQUIRES: OS=ios
|
|
|
|
// CHECK: :[[@LINE+1]]:8: error: compiling for iOS 12.0, but module 'empty' has a minimum deployment target of iOS 50.50.1: {{.*}}empty.swiftmodule{{$}}
|
|
import empty
|