mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Don't try to figure out the executable names during replay from libSwiftScan.dylib. The actual executable path for the process actually doesn't matter in this case to reconstruct the invocation and might actually be misleading. Just use `swift-frontend` as a placeheader executable name for in-process cache replay. rdar://132758308
64 lines
3.3 KiB
Swift
64 lines
3.3 KiB
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// RUN: %target-swift-frontend -scan-dependencies -module-name Test -O \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import -parse-stdlib \
|
|
// RUN: %s -o %t/deps.json -swift-version 5 -cache-compile-job -cas-path %t/cas
|
|
|
|
// RUN: %{python} %S/Inputs/BuildCommandExtractor.py %t/deps.json Test > %t/MyApp.cmd
|
|
// RUN: echo "\"-disable-implicit-string-processing-module-import\"" >> %t/MyApp.cmd
|
|
// RUN: echo "\"-disable-implicit-concurrency-module-import\"" >> %t/MyApp.cmd
|
|
// RUN: echo "\"-parse-stdlib\"" >> %t/MyApp.cmd
|
|
|
|
// RUN: %swift-scan-test -action compute_cache_key -cas-path %t/cas -input %s -- %target-swift-frontend -cache-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: @%t/MyApp.cmd > %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 %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: @%t/MyApp.cmd > %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 %s -emit-module -emit-module-path %t/Test.swiftmodule -c -emit-dependencies \
|
|
// RUN: -serialize-diagnostics -serialize-diagnostics-path %t/test.dia \
|
|
// RUN: -module-name Test -o %t/test.o -cas-path %t/cas @%t/MyApp.cmd
|
|
|
|
// 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 %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: -serialize-diagnostics -serialize-diagnostics-path %t/test2.dia \
|
|
// RUN: @%t/MyApp.cmd
|
|
|
|
// RUN: diff %t/Test.swiftmodule %t/Test2.swiftmodule
|
|
// RUN: diff %t/test.o %t/test2.o
|
|
// RUN: diff %t/test.dia %t/test2.dia
|
|
|
|
// 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://
|
|
|
|
// RUN: %swift-scan-test -action replay_result -cas-path %t/cas -id @%t/key.casid -- %target-swift-frontend -cache-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: -frontend-parseable-output -serialize-diagnostics -serialize-diagnostics-path %t/test3.dia \
|
|
// RUN: @%t/MyApp.cmd 2>&1 | %FileCheck %s --check-prefix=PARSEABLE
|
|
|
|
// RUN: diff %t/test.dia %t/test3.dia
|
|
|
|
// PARSEABLE: {{[1-9][0-9]*}}
|
|
// PARSEABLE-NEXT: {
|
|
// PARSEABLE-NEXT: "kind": "began",
|
|
// PARSEABLE-NEXT: "name": "compile",
|
|
// PARSEABLE-NEXT: "command": "swift-frontend
|
|
|
|
// PARSEABLE: "kind": "finished",
|
|
// PARSEABLE-NEXT: "name": "compile",
|
|
|
|
|
|
#warning("This is a warning")
|