From ef08bad9b4f9a260fb37e2bda00533554d33efe7 Mon Sep 17 00:00:00 2001 From: Jonathan Grynspan Date: Wed, 21 Aug 2024 06:28:14 -0400 Subject: [PATCH] [6.0] Disable part of a test that fails with Swift Testing in the toolchain. (#7901) (cherry picked from commit 5b6542de98ec1045d307702a10acb39d810a96df) --- Tests/CommandsTests/TestCommandTests.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Tests/CommandsTests/TestCommandTests.swift b/Tests/CommandsTests/TestCommandTests.swift index e419671247c..72d3d59d9e7 100644 --- a/Tests/CommandsTests/TestCommandTests.swift +++ b/Tests/CommandsTests/TestCommandTests.swift @@ -140,9 +140,6 @@ final class TestCommandTests: CommandsTestCase { let xUnitOutput = fixturePath.appending("result.xml") // Run tests in parallel with verbose output. let stdout = try await SwiftPM.Test.execute(["--parallel", "--verbose", "--xunit-output", xUnitOutput.pathString], packagePath: fixturePath).stdout - // in "swift test" test output goes to stdout - XCTAssertNoMatch(stdout, .contains("passed")) - XCTAssertNoMatch(stdout, .contains("failed")) // Check the xUnit output. XCTAssertFileExists(xUnitOutput)