mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
* Fixup tests to handle new json based output. * Use llvm-nm & readtapi to verify tbd file outputs. resolves: rdar://117604275
8 lines
312 B
Swift
8 lines
312 B
Swift
// RUN: %swift -typecheck -target arm64e-apple-ios12.0 -parse-stdlib -parse-as-library %s -module-name TBDTester -emit-tbd -emit-tbd-path %t/arm64e.tbd -tbd-install_name arm64e
|
|
// RUN: %llvm-nm -arch arm64e %t/arm64e.tbd | %FileCheck %s
|
|
|
|
public func testSwiftFunc() {}
|
|
|
|
|
|
// CHECK: _$s{{.*}}testSwiftFunc{{.*}}
|