@@ -1306,7 +1306,8 @@ struct TestCommandTests {
1306
1306
func debuggerFlagWithXCTestSuite( buildSystem: BuildSystemProvider . Kind ) async throws {
1307
1307
try await withKnownIssue (
1308
1308
"""
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
1310
1311
"""
1311
1312
) {
1312
1313
let configuration = BuildConfiguration . debug
@@ -1340,7 +1341,7 @@ struct TestCommandTests {
1340
1341
)
1341
1342
}
1342
1343
} when: {
1343
- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1344
+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline) || ProcessInfo . hostOperatingSystem == . windows
1344
1345
}
1345
1346
}
1346
1347
@@ -1351,7 +1352,8 @@ struct TestCommandTests {
1351
1352
func debuggerFlagWithSwiftTestingSuite( buildSystem: BuildSystemProvider . Kind ) async throws {
1352
1353
try await withKnownIssue (
1353
1354
"""
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
1355
1357
"""
1356
1358
) {
1357
1359
let configuration = BuildConfiguration . debug
@@ -1385,7 +1387,7 @@ struct TestCommandTests {
1385
1387
)
1386
1388
}
1387
1389
} when: {
1388
- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1390
+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline) || ProcessInfo . hostOperatingSystem == . windows
1389
1391
}
1390
1392
}
1391
1393
@@ -1396,7 +1398,8 @@ struct TestCommandTests {
1396
1398
func debuggerFlagWithBothTestingSuites( buildSystem: BuildSystemProvider . Kind ) async throws {
1397
1399
try await withKnownIssue (
1398
1400
"""
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
1400
1403
"""
1401
1404
) {
1402
1405
let configuration = BuildConfiguration . debug
@@ -1429,7 +1432,7 @@ struct TestCommandTests {
1429
1432
)
1430
1433
}
1431
1434
} when: {
1432
- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1435
+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline) || ProcessInfo . hostOperatingSystem == . windows
1433
1436
}
1434
1437
}
1435
1438
0 commit comments