Skip to content

Commit 0bed18b

Browse files
[test] Mark externalComplex as intermittent to unblock Amazon Linux 2 nightlies (#9256)
rdar://162339964
1 parent 25dbb07 commit 0bed18b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Tests/FunctionalTests/DependencyResolutionTests.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,11 @@ struct DependencyResolutionTests {
173173
buildSystem: BuildSystemProvider.Kind,
174174
configuration: BuildConfiguration,
175175
) async throws {
176-
try await withKnownIssue(isIntermittent: ProcessInfo.hostOperatingSystem == .windows){
176+
try await withKnownIssue(
177+
isIntermittent: ProcessInfo.hostOperatingSystem == .windows
178+
// rdar://162339964
179+
|| (ProcessInfo.isHostAmazonLinux2() && buildSystem == .swiftbuild)
180+
) {
177181
try await fixture(name: "DependencyResolution/External/Complex") { fixturePath in
178182
let packageRoot = fixturePath.appending("app")
179183
try await executeSwiftBuild(

0 commit comments

Comments
 (0)