mirror of
https://github.com/apple/swift.git
synced 2026-02-27 18:26:24 +01:00
Previously, const-values output is not supported correctly as it is not captured correctly as a dependency. The load of the input JSON file is loaded via file system directly, that can cause issues like: * False cache hit when the file is changed * Cannot be prefix mapped to allow distributed caching Try to support the input file by: * Correctly capture the input * Create a new driver flag `-const-gather-protocols-list` that can do path remapping correctly in swift-driver rdar://169109358
23 lines
1.1 KiB
Swift
23 lines
1.1 KiB
Swift
// UNSUPPORTED: OS=windows-msvc
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: split-file %s %t
|
|
|
|
// RUN: %target-swift-frontend -scan-dependencies -module-name Test -module-cache-path %t/clang-module-cache -O \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import \
|
|
// RUN: %t/main.swift -o %t/deps.json -swift-version 5 -cache-compile-job -cas-path %t/cas -const-gather-protocols-file %t/protocols.json \
|
|
// RUN: -scanner-prefix-map-paths %t /^tmp
|
|
|
|
// RUN: %{python} %S/../../utils/swift-build-modules.py --cas %t/cas %swift_frontend_plain %t/deps.json -o %t/MyApp.cmd
|
|
|
|
// RUN: %target-swift-frontend \
|
|
// RUN: -typecheck -cache-compile-job -cas-path %t/cas \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import \
|
|
// RUN: -module-name Test -cache-replay-prefix-map /^tmp %t -const-gather-protocols-file /^tmp/protocols.json \
|
|
// RUN: /^tmp/main.swift @%t/MyApp.cmd -emit-const-values-path %t/main.module.swiftconstvalues
|
|
|
|
//--- main.swift
|
|
print("Hello")
|
|
|
|
//--- protocols.json
|
|
["Foo"]
|