mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
35 lines
1.7 KiB
Swift
35 lines
1.7 KiB
Swift
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: mkdir %t/new_module.swiftmodule
|
|
// RUN: touch %t/new_module.swiftmodule/i387.swiftmodule
|
|
// RUN: touch %t/new_module.swiftmodule/ppc65.swiftmodule
|
|
// RUN: touch %t/new_module.swiftmodule/i387.swiftdoc
|
|
// RUN: touch %t/new_module.swiftmodule/ppc65.swiftdoc
|
|
// RUN: not %target-swift-frontend %s -typecheck -I %t -show-diagnostics-after-fatal 2>&1 | %FileCheck %s -check-prefix=CHECK -check-prefix CHECK-ALL -DTARGET_ARCHITECTURE=%module-target-triple
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: mkdir -p %t/new_module.framework/Modules/new_module.swiftmodule/
|
|
// RUN: touch %t/new_module.framework/Modules/new_module.swiftmodule/i387.swiftmodule
|
|
// RUN: touch %t/new_module.framework/Modules/new_module.swiftmodule/ppc65.swiftmodule
|
|
// RUN: not %target-swift-frontend %s -F %t -typecheck -show-diagnostics-after-fatal 2>&1 | %FileCheck %s -check-prefix=CHECK -check-prefix CHECK-ALL -DTARGET_ARCHITECTURE=%module-target-triple
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: mkdir %t/new_module.swiftmodule
|
|
// RUN: not %target-swift-frontend %s -typecheck -I %t -show-diagnostics-after-fatal 2>&1 | %FileCheck %s -check-prefix=CHECK-EMPTY -check-prefix CHECK-ALL -DTARGET_ARCHITECTURE=%target
|
|
|
|
// CHECK-ALL-NOT: error:
|
|
// CHECK: {{.*}} error: could not find module 'new_module' for target '[[TARGET_ARCHITECTURE]]'; found: {{ppc65, i387|i387, ppc65}}
|
|
// CHECK-NEXT: import new_module
|
|
// CHECK-NEXT: ^
|
|
// CHECK-ALL: error: no such module 'new_module'
|
|
// CHECK-ALL-NEXT: import new_module
|
|
// CHECK-ALL-NEXT: ^
|
|
// CHECK-ALL: error: use of unresolved identifier 'new_module'
|
|
// CHECK-ALL-NEXT: new_module.foo()
|
|
// CHECK-ALL-NEXT: ^~~~~~~~~~
|
|
// CHECK-ALL-NOT: error:
|
|
|
|
import new_module
|
|
|
|
new_module.foo()
|