Skip to content

Commit 9d33dc3

Browse files
committed
Tests: remove debugging print
Remove the printing of the generated command line. If there are cases where we need to diagnose failures in CI, we should prefer to build helpers that will show the actual and expected values to enable us to triage issues more readily.
1 parent 02da188 commit 9d33dc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SwiftDriverTests/SwiftDriverToolingInterfaceTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ final class SwiftDriverToolingInterfaceTests: XCTestCase {
116116
// Bridge argc back to [String]
117117
let argvBufferPtr = UnsafeBufferPointer<UnsafePointer<CChar>?>(start: argvPtr, count: Int(argc))
118118
let resultingFrontendArgs = argvBufferPtr.map { String(cString: $0!) }
119-
print(resultingFrontendArgs)
119+
120120
XCTAssertTrue(resultingFrontendArgs.contains("-frontend"))
121121
XCTAssertTrue(resultingFrontendArgs.contains("-c"))
122122
XCTAssertTrue(resultingFrontendArgs.contains("-emit-module-path"))

0 commit comments

Comments
 (0)