Skip to content

Commit 8ad8479

Browse files
committed
Skip tests related to ParallelTestsPkgTests
We are seeing CI failures of the form: ```/private/var/folders/_8/79jmzf2142z2xydc_01btlx00000gn/T/Miscellaneous_ParallelTestsPkg.s9qJNJ/Miscellaneous_ParallelTestsPkg/Tests/ParallelTestsPkgTests/ParallelTestsFailureTests.swift:1:8: error: compiled module was created by an older version of the compiler; rebuild 'XCTest' and try again: /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/XCTest.swiftmodule/x86_64-apple-macos.swiftmodule``` Let's skip these tests while we are investigating.
1 parent 7afc6e2 commit 8ad8479

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Tests/FunctionalTests/MiscellaneousTests.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,8 @@ class MiscellaneousTestCase: XCTestCase {
213213
}
214214

215215
func testSwiftTestParallel() throws {
216+
try XCTSkip()
217+
216218
fixture(name: "Miscellaneous/ParallelTestsPkg") { prefix in
217219
// First try normal serial testing.
218220
do {
@@ -258,6 +260,8 @@ class MiscellaneousTestCase: XCTestCase {
258260
}
259261

260262
func testSwiftTestFilter() throws {
263+
try XCTSkip()
264+
261265
fixture(name: "Miscellaneous/ParallelTestsPkg") { prefix in
262266
let (stdout, _) = try SwiftPMProduct.SwiftTest.execute(["--filter", ".*1", "-l", "--enable-test-discovery"], packagePath: prefix)
263267
XCTAssertMatch(stdout, .contains("testExample1"))
@@ -274,6 +278,8 @@ class MiscellaneousTestCase: XCTestCase {
274278
}
275279

276280
func testSwiftTestSkip() throws {
281+
try XCTSkip()
282+
277283
fixture(name: "Miscellaneous/ParallelTestsPkg") { prefix in
278284
let (stdout, _) = try SwiftPMProduct.SwiftTest.execute(["--skip", "ParallelTestsTests", "-l", "--enable-test-discovery"], packagePath: prefix)
279285
XCTAssertNoMatch(stdout, .contains("testExample1"))

0 commit comments

Comments
 (0)