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
11 lines
677 B
Swift
11 lines
677 B
Swift
// REQUIRES: VENDOR=apple
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -module-name test -validate-tbd-against-ir=all %s
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -module-name test -validate-tbd-against-ir=all %s -O
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -typecheck -parse-as-library -module-name test %s -tbd-install_name test -emit-tbd -emit-tbd-path %t/typecheck.tbd
|
|
// RUN: %target-swift-frontend -emit-ir -parse-as-library -module-name test %s -tbd-install_name test -emit-tbd -emit-tbd-path %t/emit-ir.tbd
|
|
// RUN: %llvm-readtapi --compare %t/typecheck.tbd %t/emit-ir.tbd
|
|
|
|
// Top-level code (i.e. implicit `main`) should be handled
|