@@ -234,7 +234,7 @@ final class CachingBuildTests: XCTestCase {
234234 " -cache-compile-job " , " -cas-path " , casPath. nativePathString ( escaped: true ) ,
235235 " -import-objc-header " , bridgingHeaderpath. nativePathString ( escaped: true ) ,
236236 main. nativePathString ( escaped: true ) ] + sdkArgumentsForTesting)
237- guard driver. isFeatureSupported ( . cache_compile_job ) else {
237+ guard driver. isFeatureSupported ( . compilation_caching ) else {
238238 throw XCTSkip ( " toolchain does not support caching. " )
239239 }
240240
@@ -361,7 +361,7 @@ final class CachingBuildTests: XCTestCase {
361361 guard driver. supportExplicitModuleVerifyInterface ( ) else {
362362 throw XCTSkip ( " -typecheck-module-from-interface doesn't support explicit build. " )
363363 }
364- guard driver. isFeatureSupported ( . cache_compile_job ) else {
364+ guard driver. isFeatureSupported ( . compilation_caching ) else {
365365 throw XCTSkip ( " toolchain does not support caching. " )
366366 }
367367
@@ -492,7 +492,7 @@ final class CachingBuildTests: XCTestCase {
492492 " -working-directory " , path. nativePathString ( escaped: true ) ,
493493 main. nativePathString ( escaped: true ) ] + sdkArgumentsForTesting,
494494 env: ProcessEnv . vars)
495- guard driver. isFeatureSupported ( . cache_compile_job ) else {
495+ guard driver. isFeatureSupported ( . compilation_caching ) else {
496496 throw XCTSkip ( " toolchain does not support caching. " )
497497 }
498498 let jobs = try driver. planBuild ( )
@@ -554,7 +554,7 @@ final class CachingBuildTests: XCTestCase {
554554 env: ProcessEnv . vars)
555555
556556 // Ensure this tooling supports this functionality
557- guard fooBuildDriver. isFeatureSupported ( . cache_compile_job ) else {
557+ guard fooBuildDriver. isFeatureSupported ( . compilation_caching ) else {
558558 throw XCTSkip ( " toolchain does not support caching. " )
559559 }
560560 let dependencyOracle = InterModuleDependencyOracle ( )
@@ -623,7 +623,7 @@ final class CachingBuildTests: XCTestCase {
623623 " -disable-clang-target " ,
624624 main. nativePathString ( escaped: true ) ] + sdkArgumentsForTesting,
625625 env: ProcessEnv . vars)
626- guard driver. isFeatureSupported ( . cache_compile_job ) else {
626+ guard driver. isFeatureSupported ( . compilation_caching ) else {
627627 throw XCTSkip ( " toolchain does not support caching. " )
628628 }
629629 let dependencyOracle = InterModuleDependencyOracle ( )
@@ -829,7 +829,7 @@ final class CachingBuildTests: XCTestCase {
829829 " -working-directory " , path. nativePathString ( escaped: true ) ,
830830 main. nativePathString ( escaped: true ) ] + sdkArgumentsForTesting,
831831 env: ProcessEnv . vars)
832- guard driver. isFeatureSupported ( . cache_compile_job ) else {
832+ guard driver. isFeatureSupported ( . compilation_caching ) else {
833833 throw XCTSkip ( " toolchain does not support caching. " )
834834 }
835835 let jobs = try driver. planBuild ( )
0 commit comments