Skip to content

rdar://69448176 (Fix and re-enable test related to "ParallelTestsPkg") #3626

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Tests/FunctionalTests/CFamilyTargetTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,6 @@ class CFamilyTargetTestCase: XCTestCase {
}

func testObjectiveCPackageWithTestTarget() throws {
// <rdar://problem/70382477> Fix and re-enable tests which run `swift test` on newly created packages
try XCTSkipIf(true)

#if os(macOS)
fixture(name: "CFamilyTargets/ObjCmacOSPackage") { prefix in
// Build the package.
Expand Down
9 changes: 0 additions & 9 deletions Tests/FunctionalTests/MiscellaneousTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,6 @@ class MiscellaneousTestCase: XCTestCase {
}

func testSwiftTestParallel() throws {
// <rdar://problem/69448176> Fix and re-enable test related to "ParallelTestsPkg"
try XCTSkipIf(true)

fixture(name: "Miscellaneous/ParallelTestsPkg") { prefix in
// First try normal serial testing.
do {
Expand Down Expand Up @@ -261,9 +258,6 @@ class MiscellaneousTestCase: XCTestCase {
}

func testSwiftTestFilter() throws {
// <rdar://problem/69448176> Fix and re-enable test related to "ParallelTestsPkg"
try XCTSkipIf(true)

fixture(name: "Miscellaneous/ParallelTestsPkg") { prefix in
let (stdout, _) = try SwiftPMProduct.SwiftTest.execute(["--filter", ".*1", "-l"], packagePath: prefix)
XCTAssertMatch(stdout, .contains("testExample1"))
Expand All @@ -280,9 +274,6 @@ class MiscellaneousTestCase: XCTestCase {
}

func testSwiftTestSkip() throws {
// <rdar://problem/69448176> Fix and re-enable test related to "ParallelTestsPkg"
try XCTSkipIf(true)

fixture(name: "Miscellaneous/ParallelTestsPkg") { prefix in
let (stdout, _) = try SwiftPMProduct.SwiftTest.execute(["--skip", "ParallelTestsTests", "-l"], packagePath: prefix)
XCTAssertNoMatch(stdout, .contains("testExample1"))
Expand Down
3 changes: 0 additions & 3 deletions Tests/FunctionalTests/SwiftPMXCTestHelperTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ import Workspace

class SwiftPMXCTestHelperTests: XCTestCase {
func testBasicXCTestHelper() throws {
// <rdar://problem/70382477> Fix and re-enable tests which run `swift test` on newly created packages
try XCTSkipIf(true)

#if os(macOS)
fixture(name: "Miscellaneous/SwiftPMXCTestHelper") { prefix in
// Build the package.
Expand Down
3 changes: 0 additions & 3 deletions Tests/WorkspaceTests/InitTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,6 @@ class InitTests: XCTestCase {
}

func testNonC99NameExecutablePackage() throws {
// <rdar://problem/70382477> Fix and re-enable tests which run `swift test` on newly created packages
try XCTSkipIf(true)

try withTemporaryDirectory(removeTreeOnDeinit: true) { tempDirPath in
XCTAssertTrue(localFileSystem.isDirectory(tempDirPath))

Expand Down