@@ -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,8 @@ 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)
1345
+ || ( ProcessInfo . hostOperatingSystem == . windows && CiEnvironment . runningInSelfHostedPipeline)
1344
1346
}
1345
1347
}
1346
1348
@@ -1351,7 +1353,8 @@ struct TestCommandTests {
1351
1353
func debuggerFlagWithSwiftTestingSuite( buildSystem: BuildSystemProvider . Kind ) async throws {
1352
1354
try await withKnownIssue (
1353
1355
"""
1354
- MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1356
+ MacOS, .swiftbuild: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1357
+ Windows: Missing LLDB DLLs w/ ARM64 toolchain
1355
1358
"""
1356
1359
) {
1357
1360
let configuration = BuildConfiguration . debug
@@ -1385,7 +1388,8 @@ struct TestCommandTests {
1385
1388
)
1386
1389
}
1387
1390
} when: {
1388
- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1391
+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline)
1392
+ || ( ProcessInfo . hostOperatingSystem == . windows && CiEnvironment . runningInSelfHostedPipeline)
1389
1393
}
1390
1394
}
1391
1395
@@ -1396,7 +1400,8 @@ struct TestCommandTests {
1396
1400
func debuggerFlagWithBothTestingSuites( buildSystem: BuildSystemProvider . Kind ) async throws {
1397
1401
try await withKnownIssue (
1398
1402
"""
1399
- MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1403
+ MacOS, .swiftbuild: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1404
+ Windows: Missing LLDB DLLs w/ ARM64 toolchain
1400
1405
"""
1401
1406
) {
1402
1407
let configuration = BuildConfiguration . debug
@@ -1429,7 +1434,8 @@ struct TestCommandTests {
1429
1434
)
1430
1435
}
1431
1436
} when: {
1432
- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1437
+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline)
1438
+ || ( ProcessInfo . hostOperatingSystem == . windows && CiEnvironment . runningInSelfHostedPipeline)
1433
1439
}
1434
1440
}
1435
1441
0 commit comments