Skip to content

Commit 4511962

Browse files
authored
Tests: Enable some WorkspaceTests on Windows (#8463)
Enable WorkspaceTests on Windows that, for some reason, previously failed. Relates: #8433 rdar://148248105
1 parent d4368fe commit 4511962

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

Tests/WorkspaceTests/WorkspaceTests.swift

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,6 @@ final class WorkspaceTests: XCTestCase {
171171
}
172172

173173
func testInterpreterFlags() async throws {
174-
try skipOnWindowsAsTestCurrentlyFails()
175-
176174
let fs = localFileSystem
177175

178176
try testWithTemporaryDirectory { path in
@@ -297,8 +295,6 @@ final class WorkspaceTests: XCTestCase {
297295
}
298296

299297
func testManifestParseError() async throws {
300-
try skipOnWindowsAsTestCurrentlyFails()
301-
302298
let observability = ObservabilitySystem.makeForTesting()
303299

304300
try await testWithTemporaryDirectory { path in
@@ -15899,8 +15895,6 @@ final class WorkspaceTests: XCTestCase {
1589915895
}
1590015896

1590115897
func testSigningEntityVerification_SignedCorrectly() async throws {
15902-
try skipOnWindowsAsTestCurrentlyFails()
15903-
1590415898
let actualMetadata = RegistryReleaseMetadata.createWithSigningEntity(
1590515899
.recognized(
1590615900
type: "adp",
@@ -15920,8 +15914,6 @@ final class WorkspaceTests: XCTestCase {
1592015914
}
1592115915

1592215916
func testSigningEntityVerification_SignedIncorrectly() async throws {
15923-
try skipOnWindowsAsTestCurrentlyFails()
15924-
1592515917
let actualMetadata = RegistryReleaseMetadata.createWithSigningEntity(
1592615918
.recognized(
1592715919
type: "adp",
@@ -15953,8 +15945,6 @@ final class WorkspaceTests: XCTestCase {
1595315945
}
1595415946

1595515947
func testSigningEntityVerification_Unsigned() async throws {
15956-
try skipOnWindowsAsTestCurrentlyFails()
15957-
1595815948
let expectedSigningEntity: RegistryReleaseMetadata.SigningEntity = .recognized(
1595915949
type: "adp",
1596015950
commonName: "Jane Doe",
@@ -15977,8 +15967,6 @@ final class WorkspaceTests: XCTestCase {
1597715967
}
1597815968

1597915969
func testSigningEntityVerification_NotFound() async throws {
15980-
try skipOnWindowsAsTestCurrentlyFails()
15981-
1598215970
let expectedSigningEntity: RegistryReleaseMetadata.SigningEntity = .recognized(
1598315971
type: "adp",
1598415972
commonName: "Jane Doe",
@@ -16001,8 +15989,6 @@ final class WorkspaceTests: XCTestCase {
1600115989
}
1600215990

1600315991
func testSigningEntityVerification_MirroredSignedCorrectly() async throws {
16004-
try skipOnWindowsAsTestCurrentlyFails()
16005-
1600615992
let mirrors = try DependencyMirrors()
1600715993
try mirrors.set(mirror: "ecorp.bar", for: "org.bar")
1600815994

@@ -16032,8 +16018,6 @@ final class WorkspaceTests: XCTestCase {
1603216018
}
1603316019

1603416020
func testSigningEntityVerification_MirrorSignedIncorrectly() async throws {
16035-
try skipOnWindowsAsTestCurrentlyFails()
16036-
1603716021
let mirrors = try DependencyMirrors()
1603816022
try mirrors.set(mirror: "ecorp.bar", for: "org.bar")
1603916023

@@ -16071,8 +16055,6 @@ final class WorkspaceTests: XCTestCase {
1607116055
}
1607216056

1607316057
func testSigningEntityVerification_MirroredUnsigned() async throws {
16074-
try skipOnWindowsAsTestCurrentlyFails()
16075-
1607616058
let mirrors = try DependencyMirrors()
1607716059
try mirrors.set(mirror: "ecorp.bar", for: "org.bar")
1607816060

@@ -16098,8 +16080,6 @@ final class WorkspaceTests: XCTestCase {
1609816080
}
1609916081

1610016082
func testSigningEntityVerification_MirroredToSCM() async throws {
16101-
try skipOnWindowsAsTestCurrentlyFails()
16102-
1610316083
let mirrors = try DependencyMirrors()
1610416084
try mirrors.set(mirror: "https://scm.com/org/bar-mirror", for: "org.bar")
1610516085

@@ -16485,8 +16465,6 @@ final class WorkspaceTests: XCTestCase {
1648516465
archiver: Archiver? = .none,
1648616466
fileSystem: FileSystem
1648716467
) throws -> RegistryClient {
16488-
try skipOnWindowsAsTestCurrentlyFails()
16489-
1649016468
let jsonEncoder = JSONEncoder.makeWithDefaults()
1649116469

1649216470
guard let identity = packageIdentity.registry else {

0 commit comments

Comments
 (0)