mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This test succeeds on macosx but fails on iphoneos. XFAIL does not work. Use "REQUIRES: non_lto" instead. rdar://26281388
12 lines
404 B
Swift
12 lines
404 B
Swift
// Statically link a "hello world" program
|
|
// XFAIL: linux
|
|
// REQUIRES: non_lto
|
|
// REQUIRES: static_stdlib
|
|
print("hello world!")
|
|
// RUN: rm -rf %t && mkdir %t
|
|
// RUN: %target-build-swift -static-stdlib -o %t/static-stdlib %s
|
|
// RUN: %target-run %t/static-stdlib | FileCheck %s
|
|
// RUN: otool -L %t/static-stdlib | FileCheck %s --check-prefix=OTOOL
|
|
// CHECK: hello world!
|
|
// OTOOL-NOT: libswiftCore.dylib
|