@@ -1306,7 +1306,8 @@ struct TestCommandTests {
13061306 func debuggerFlagWithXCTestSuite( buildSystem: BuildSystemProvider . Kind ) async throws {
13071307 try await withKnownIssue (
13081308 """
1309- MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1309+ MacOS, .swiftbuild: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1310+ Windows: Missing LLDB DLLs w/ ARM64 toolchain
13101311 """
13111312 ) {
13121313 let configuration = BuildConfiguration . debug
@@ -1340,7 +1341,7 @@ struct TestCommandTests {
13401341 )
13411342 }
13421343 } when: {
1343- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1344+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline) || ProcessInfo . hostOperatingSystem == . windows
13441345 }
13451346 }
13461347
@@ -1351,7 +1352,8 @@ struct TestCommandTests {
13511352 func debuggerFlagWithSwiftTestingSuite( buildSystem: BuildSystemProvider . Kind ) async throws {
13521353 try await withKnownIssue (
13531354 """
1354- MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1355+ MacOS, .swiftbuild: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1356+ Windows: Missing LLDB DLLs w/ ARM64 toolchain
13551357 """
13561358 ) {
13571359 let configuration = BuildConfiguration . debug
@@ -1385,7 +1387,7 @@ struct TestCommandTests {
13851387 )
13861388 }
13871389 } when: {
1388- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1390+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline) || ProcessInfo . hostOperatingSystem == . windows
13891391 }
13901392 }
13911393
@@ -1396,7 +1398,8 @@ struct TestCommandTests {
13961398 func debuggerFlagWithBothTestingSuites( buildSystem: BuildSystemProvider . Kind ) async throws {
13971399 try await withKnownIssue (
13981400 """
1399- MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1401+ MacOS, .swiftbuild: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1402+ Windows: Missing LLDB DLLs w/ ARM64 toolchain
14001403 """
14011404 ) {
14021405 let configuration = BuildConfiguration . debug
@@ -1429,7 +1432,7 @@ struct TestCommandTests {
14291432 )
14301433 }
14311434 } when: {
1432- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1435+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline) || ProcessInfo . hostOperatingSystem == . windows
14331436 }
14341437 }
14351438
0 commit comments