From 4997eb66e3cf143163cdaf4d0726ec490ea7de54 Mon Sep 17 00:00:00 2001 From: Artem Chikin Date: Wed, 4 Aug 2021 15:33:02 -0700 Subject: [PATCH] Temporarily disable `testDependencyScanning` To unblock updating CI Xcode which is currently failing in: https://ci.swift.org/job/swift-PR-macOS-new-xcode/117/console The proper test fix is included in https://github.com/apple/swift-driver/pull/781, which will re-enable this test. --- Tests/SwiftDriverTests/ExplicitModuleBuildTests.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Tests/SwiftDriverTests/ExplicitModuleBuildTests.swift b/Tests/SwiftDriverTests/ExplicitModuleBuildTests.swift index 9ab056d2c..547a03151 100644 --- a/Tests/SwiftDriverTests/ExplicitModuleBuildTests.swift +++ b/Tests/SwiftDriverTests/ExplicitModuleBuildTests.swift @@ -620,6 +620,9 @@ final class ExplicitModuleBuildTests: XCTestCase { /// Test the libSwiftScan dependency scanning (import-prescan). func testDependencyImportPrescan() throws { + // Disabled temporarily to be re-enabled with: https://github.com/apple/swift-driver/pull/781 + throw XCTSkip() + let (stdLibPath, shimsPath, toolchain, hostTriple) = try getDriverArtifactsForScanning() // The dependency oracle wraps an instance of libSwiftScan and ensures thread safety across @@ -668,6 +671,9 @@ final class ExplicitModuleBuildTests: XCTestCase { /// Test the libSwiftScan dependency scanning. func testDependencyScanning() throws { + // Disabled temporarily to be re-enabled with: https://github.com/apple/swift-driver/pull/781 + throw XCTSkip() + let (stdLibPath, shimsPath, toolchain, hostTriple) = try getDriverArtifactsForScanning() // The dependency oracle wraps an instance of libSwiftScan and ensures thread safety across