mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Also, restructure the `CHECK:` lines for the `-emit-tbd` test. The number of columns in the `.tbd` file appears to be variable, so we can't assume a layout for the symbols in the YAML.
35 lines
2.1 KiB
Swift
35 lines
2.1 KiB
Swift
// RUN: %swiftc_driver -driver-print-jobs -target x86_64-apple-macosx10.9 %s -emit-module-interface -o %t/foo 2>&1 | %FileCheck %s
|
|
|
|
// CHECK: swift{{(-frontend|c)?(\.exe)?"?}} -frontend
|
|
// CHECK-SAME: emit-interface.swift
|
|
// CHECK: swift{{(-frontend|c)?(\.exe)?"?}} -frontend -merge-modules
|
|
// CHECK-SAME: -emit-module-interface-path {{.+[/\\]}}foo.swiftinterface
|
|
// CHECK: {{(bin/)?}}ld
|
|
|
|
// RUN: %swiftc_driver -driver-print-jobs -target x86_64-apple-macosx10.9 %s -emit-module-interface -o %t/foo -whole-module-optimization 2>&1 | %FileCheck -check-prefix=CHECK-WHOLE-MODULE %s
|
|
|
|
// CHECK-WHOLE-MODULE: swift{{(-frontend|c)?(\.exe)?"?}} -frontend
|
|
// CHECK-WHOLE-MODULE-SAME: emit-interface.swift
|
|
// CHECK-WHOLE-MODULE-SAME: -emit-module-interface-path {{.+[/\\]}}foo.swiftinterface
|
|
// CHECK-WHOLE-MODULE-NOT: -merge-modules
|
|
// CHECK-WHOLE-MODULE: {{(bin/)?}}ld
|
|
|
|
// RUN: %swiftc_driver -driver-print-jobs -target x86_64-apple-macosx10.9 %s -emit-module-interface-path %t/unrelated.swiftinterface -o %t/foo -whole-module-optimization 2>&1 | %FileCheck -check-prefix=CHECK-EXPLICIT-PATH %s
|
|
|
|
// CHECK-EXPLICIT-PATH: swift{{(-frontend|c)?(\.exe)?"?}} -frontend
|
|
// CHECK-EXPLICIT-PATH-SAME: emit-interface.swift
|
|
// CHECK-EXPLICIT-PATH-SAME: -emit-module-interface-path {{.+[/\\]}}unrelated.swiftinterface
|
|
|
|
// Ensure that we emit arguments when we force filelists as well
|
|
// RUN: %swiftc_driver -driver-print-jobs -target x86_64-apple-macosx10.9 %s -emit-module-interface -o %t/foo -module-name foo -whole-module-optimization -driver-filelist-threshold=0 2>&1 | %FileCheck -check-prefix=CHECK-FILELIST %s
|
|
|
|
// CHECK-FILELIST: swift{{(-frontend|c)?(\.exe)?"?}} -frontend
|
|
// CHECK-FILELIST-SAME: -supplementary-output-file-map
|
|
// CHECK-FILELIST-NOT: emit-interface.swift{{ }}
|
|
|
|
// RUN: %swiftc_driver -driver-print-jobs -target x86_64-apple-macosx10.9 -experimental-lazy-typecheck %s -emit-module-interface -o %t/foo 2>&1 | %FileCheck -check-prefix=CHECK-LAZY-TYPECHECK %s
|
|
|
|
// CHECK-LAZY-TYPECHECK: swift{{(-frontend|c)?(\.exe)?"?}} -frontend
|
|
// CHECK-LAZY-TYPECHECK-SAME: -experimental-lazy-typecheck
|
|
// CHECK-LAZY-TYPECHECK-SAME: emit-interface.swift
|