Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import SWBTestSupport
import SWBUtil

@Suite(.skipHostOS(.windows, "Windows platform has no CAS support yet"),
.requireDependencyScannerPlusCaching, .skipInXcodeCloud("flaky tests"), .requireXcode26())
.requireDependencyScannerPlusCaching, .requireXcode26())
fileprivate struct ClangCompilationCachingTests: CoreBasedTests {
let canUseCASPlugin: Bool
let canUseCASPruning: Bool
Expand Down
3 changes: 2 additions & 1 deletion Tests/SWBBuildSystemTests/ClangExplicitModulesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,8 @@ fileprivate struct ClangExplicitModulesTests: CoreBasedTests {
}
}

@Test(.requireSDKs(.macOS))
@Test(.requireSDKs(.macOS), .disabled("setting global environment interferes concurrent tests"),
.bug("https://github.com/swiftlang/swift-build/issues/835"))
func explicitModulesEnvironment() async throws {
try await withTemporaryDirectory { tmpDirPath in
let testWorkspace = TestWorkspace(
Expand Down
3 changes: 1 addition & 2 deletions Tests/SWBBuildSystemTests/ClangModuleVerifierTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,7 @@ fileprivate struct ClangModuleVerifierTests: CoreBasedTests {
}
}

@Test(.requireSDKs(.macOS), .requireClangFeatures(.wSystemHeadersInModule), .requireDependencyScannerPlusCaching,
.skipInXcodeCloud("flaky tests"), .requireXcode26())
@Test(.requireSDKs(.macOS), .requireClangFeatures(.wSystemHeadersInModule), .requireDependencyScannerPlusCaching, .requireXcode26())
func cachedBuild() async throws {
try await withTemporaryDirectory { (tmpDirPath: Path) in
let archs = ["arm64", "x86_64"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ import SWBUtil
import SWBTaskExecution
import SWBProtocol

@Suite(.requireSwiftFeatures(.compilationCaching),
.skipInXcodeCloud("flaky tests"), .requireXcode26())
@Suite(.requireSwiftFeatures(.compilationCaching), .requireXcode26())
fileprivate struct SwiftCompilationCachingTests: CoreBasedTests {
@Test(.requireSDKs(.iOS))
func swiftCachingSimple() async throws {
Expand Down