mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The `-force-single-frontend-invocation` flag predates WMO and is now an alias for `-whole-module-optimization`. We should use the latter and let the former fade into history.
23 lines
983 B
Swift
23 lines
983 B
Swift
// REQUIRES: shell
|
|
// RUN: %empty-directory(%t)
|
|
|
|
// This limit was chosen because multi-threaded compilation broke here on OS X
|
|
// at one point.
|
|
// RUN: for i in {1..1100}; do echo "public func foo$i() {}" > %t/$i.swift; echo "CHECK: foo$i" >> %t/check.txt; done
|
|
|
|
// RUN: (cd %t && %target-build-swift -whole-module-optimization -emit-library ./*.swift -o ./libWMO)
|
|
// RUN: nm %t/libWMO | %FileCheck %t/check.txt
|
|
|
|
// RUN: (cd %t && %target-build-swift -whole-module-optimization -num-threads 1 -emit-library ./*.swift -o ./libWMOThreaded)
|
|
// RUN: nm %t/libWMOThreaded | %FileCheck %t/check.txt
|
|
|
|
// This is very slow due to process overhead. It's also doing one file at a time
|
|
// because we don't have a good way for lit tests to claim more than one thread.
|
|
// But it's still important to check.
|
|
// RUN: (cd %t && %target-build-swift -emit-library ./*.swift -o ./libMultiFile)
|
|
// RUN: nm %t/libMultiFile | %FileCheck %t/check.txt
|
|
|
|
// REQUIRES: long_test
|
|
// REQUIRES: executable_test
|
|
|