mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Avoid path encoding difference (for example, real_path vs. path from symlink) by eliminating the path from cache key. Cache key is now encoded with the index of the input file from all the input files from the command-line, reguardless if those inputs will produce output or not. This is to ensure stable ordering even the batching is different. Add a new cache computation API that is preferred for using input index directly. Old API for cache key is deprecated but still updated to fallback to real_path comparsion if needed. As a result of swift scan API change, rename the feature in JSON file to avoid version confusion between swift-driver and libSwiftScan. rdar://119387650
35 lines
2.0 KiB
Swift
35 lines
2.0 KiB
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// RUN: %swift-scan-test -action compute_cache_key -cas-path %t/cas -input %s -- %target-swift-frontend -cache-compile-job -Rcache-compile-job %s \
|
|
// RUN: -emit-module -emit-module-path %t/Test.swiftmodule -c -emit-dependencies -module-name Test -o %t/test.o -cas-path %t/cas \
|
|
// RUN: -allow-unstable-cache-key-for-testing > %t/key.casid
|
|
|
|
// RUN: %swift-scan-test -action compute_cache_key_from_index -cas-path %t/cas -input 0 -- %target-swift-frontend -cache-compile-job -Rcache-compile-job %s \
|
|
// RUN: -emit-module -emit-module-path %t/Test.swiftmodule -c -emit-dependencies -module-name Test -o %t/test.o -cas-path %t/cas \
|
|
// RUN: -allow-unstable-cache-key-for-testing > %t/key1.casid
|
|
|
|
// RUN: diff %t/key.casid %t/key1.casid
|
|
|
|
// RUN: not %swift-scan-test -action cache_query -id @%t/key.casid -cas-path %t/cas 2>&1 | %FileCheck %s --check-prefix=CHECK-QUERY-NOT-FOUND
|
|
|
|
// RUN: %target-swift-frontend -cache-compile-job -Rcache-compile-job %s -emit-module -emit-module-path %t/Test.swiftmodule -c -emit-dependencies \
|
|
// RUN: -module-name Test -o %t/test.o -cas-path %t/cas -allow-unstable-cache-key-for-testing
|
|
|
|
// RUN: %swift-scan-test -action cache_query -id @%t/key.casid -cas-path %t/cas | %FileCheck %s --check-prefix=CHECK-QUERY
|
|
|
|
// RUN: %swift-scan-test -action replay_result -cas-path %t/cas -id @%t/key.casid -- %target-swift-frontend -cache-compile-job -Rcache-compile-job %s \
|
|
// RUN: -emit-module -emit-module-path %t/Test2.swiftmodule -c -emit-dependencies -module-name Test -o %t/test2.o -cas-path %t/cas \
|
|
// RUN: -allow-unstable-cache-key-for-testing
|
|
|
|
// RUN: diff %t/Test.swiftmodule %t/Test2.swiftmodule
|
|
// RUN: diff %t/test.o %t/test.o
|
|
|
|
// CHECK-QUERY-NOT-FOUND: cached output not found
|
|
// CHECK-QUERY: Cached Compilation for key "llvmcas://{{.*}}" has 4 outputs:
|
|
// CHECK-QUERY-NEXT: object: llvmcas://
|
|
// CHECK-QUERY-NEXT: dependencies: llvmcas://
|
|
// CHECK-QUERY-NEXT: swiftmodule: llvmcas://
|
|
// CHECK-QUERY-NEXT: cached-diagnostics: llvmcas://
|
|
|
|
func testFunc() {}
|