mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* Fixup tests to handle new json based output. * Use llvm-nm & readtapi to verify tbd file outputs. resolves: rdar://117604275
26 lines
1.3 KiB
Swift
26 lines
1.3 KiB
Swift
// REQUIRES: VENDOR=apple
|
|
// RUN: %empty-directory(%t)
|
|
|
|
// RUN: %target-swift-frontend %S/Inputs/spi_helper.swift -emit-ir -o %t/spi_helper.ll -emit-tbd-path %t/spi_helper.tbd -module-name spi_helper -tbd-install_name spi_helper
|
|
|
|
// RUN: cat %t/spi_helper.ll | %FileCheck -check-prefix=CHECK-IR %s
|
|
// RUN: %llvm-nm %t/spi_helper.tbd | %FileCheck -check-prefix=CHECK-TBD %s
|
|
|
|
// Look for the SPI symbols in the IR
|
|
// CHECK-IR: define swiftcc void @"$s10spi_helper0A4FuncyyF"
|
|
// CHECK-IR: define swiftcc void @"$s10spi_helper9SPIStructV0A6MethodyyF"
|
|
// CHECK-IR: define swiftcc void @"$s10spi_helper8SPIClassC0A6MethodyyF"
|
|
// CHECK-IR: define swiftcc void @"$s10spi_helper7SPIEnumO0A6MethodyyF"
|
|
// CHECK-IR: define swiftcc void @"$s10spi_helper12PublicStructV0A6MethodyyF"
|
|
// CHECK-IR: define swiftcc void @"$s10spi_helper12PublicStructV20prespecializedMethodyyxlFSi_Ts5"
|
|
// CHECK-IR: define swiftcc void @"$s10spi_helper12otherApiFuncyyF"
|
|
|
|
// Look for the SPI symbols in the TBD file, these are sorted
|
|
// CHECK-TBD: _$s10spi_helper0A4FuncyyF
|
|
// CHECK-TBD: _$s10spi_helper12PublicStructV0A6MethodyyF
|
|
// CHECK-TBD: _$s10spi_helper12PublicStructV20prespecializedMethodyyxlFSi_Ts5
|
|
// CHECK-TBD: _$s10spi_helper12otherApiFuncyyF
|
|
// CHECK-TBD: _$s10spi_helper7SPIEnumO0A6MethodyyF
|
|
// CHECK-TBD: _$s10spi_helper8SPIClassC0A6MethodyyF
|
|
// CHECK-TBD: _$s10spi_helper9SPIStructV0A6MethodyyF
|