mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Clang 8 or 9 seems to have changed from EXE to exe. Allow both capitalizations (which is not important in Windows) as a workaround. Maybe in the future we can remove the uppercase option.
29 lines
1.7 KiB
Swift
29 lines
1.7 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{{c?(\.exe)?"?}} -frontend
|
|
// CHECK-SAME: emit-interface.swift
|
|
// CHECK: swift{{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 -force-single-frontend-invocation 2>&1 | %FileCheck -check-prefix=CHECK-WHOLE-MODULE %s
|
|
|
|
// CHECK-WHOLE-MODULE: swift{{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 -force-single-frontend-invocation 2>&1 | %FileCheck -check-prefix=CHECK-EXPLICIT-PATH %s
|
|
|
|
// CHECK-EXPLICIT-PATH: swift{{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 -force-single-frontend-invocation -driver-filelist-threshold=0 2>&1 | %FileCheck -check-prefix=CHECK-FILELIST %s
|
|
|
|
// CHECK-FILELIST: swift{{c?(\.exe)?"?}} -frontend
|
|
// CHECK-FILELIST-SAME: -supplementary-output-file-map
|
|
// CHECK-FILELIST-NOT: emit-interface.swift{{ }}
|