@@ -1302,7 +1302,8 @@ struct TestCommandTests {
1302
1302
func debuggerFlagWithXCTestSuite( buildSystem: BuildSystemProvider . Kind ) async throws {
1303
1303
try await withKnownIssue (
1304
1304
"""
1305
- MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1305
+ MacOS, .swiftbuild: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1306
+ Windows: Missing LLDB DLLs w/ ARM64 toolchain
1306
1307
"""
1307
1308
) {
1308
1309
let configuration = BuildConfiguration . debug
@@ -1336,7 +1337,8 @@ struct TestCommandTests {
1336
1337
)
1337
1338
}
1338
1339
} when: {
1339
- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1340
+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline)
1341
+ || ( ProcessInfo . hostOperatingSystem == . windows && CiEnvironment . runningInSelfHostedPipeline)
1340
1342
}
1341
1343
}
1342
1344
@@ -1347,7 +1349,8 @@ struct TestCommandTests {
1347
1349
func debuggerFlagWithSwiftTestingSuite( buildSystem: BuildSystemProvider . Kind ) async throws {
1348
1350
try await withKnownIssue (
1349
1351
"""
1350
- MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1352
+ MacOS, .swiftbuild: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1353
+ Windows: Missing LLDB DLLs w/ ARM64 toolchain
1351
1354
"""
1352
1355
) {
1353
1356
let configuration = BuildConfiguration . debug
@@ -1381,7 +1384,8 @@ struct TestCommandTests {
1381
1384
)
1382
1385
}
1383
1386
} when: {
1384
- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1387
+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline)
1388
+ || ( ProcessInfo . hostOperatingSystem == . windows && CiEnvironment . runningInSelfHostedPipeline)
1385
1389
}
1386
1390
}
1387
1391
@@ -1392,7 +1396,8 @@ struct TestCommandTests {
1392
1396
func debuggerFlagWithBothTestingSuites( buildSystem: BuildSystemProvider . Kind ) async throws {
1393
1397
try await withKnownIssue (
1394
1398
"""
1395
- MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1399
+ MacOS, .swiftbuild: Could not find or use auto-linked library 'Testing': library 'Testing' not found
1400
+ Windows: Missing LLDB DLLs w/ ARM64 toolchain
1396
1401
"""
1397
1402
) {
1398
1403
let configuration = BuildConfiguration . debug
@@ -1425,7 +1430,8 @@ struct TestCommandTests {
1425
1430
)
1426
1431
}
1427
1432
} when: {
1428
- buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline
1433
+ ( buildSystem == . swiftbuild && ProcessInfo . hostOperatingSystem == . macOS && CiEnvironment . runningInSelfHostedPipeline)
1434
+ || ( ProcessInfo . hostOperatingSystem == . windows && CiEnvironment . runningInSelfHostedPipeline)
1429
1435
}
1430
1436
}
1431
1437
0 commit comments