Skip to content

Commit 8c88842

Browse files
committed
[DNM] Debug prints commit
1 parent a064bb3 commit 8c88842

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Tests/SwiftDriverTests/SwiftDriverTests.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4739,10 +4739,14 @@ final class SwiftDriverTests: XCTestCase {
47394739
let swiftScanLibPath = try Driver.getScanLibPath(of: driver.toolchain,
47404740
hostTriple: driver.hostTriple,
47414741
env: env)
4742+
print("Attempting to use scanner library at: \(swiftScanLibPath.debugDescription)")
47424743
if localFileSystem.exists(swiftScanLibPath) {
4744+
print("Library Exists")
47434745
let libSwiftScanInstance = try SwiftScan(dylib: swiftScanLibPath)
47444746
if libSwiftScanInstance.canQueryTargetInfo() {
4745-
let _ = try libSwiftScanInstance.queryTargetInfo(invocationCommand: targetInfoArgs)
4747+
print("Library able to query target info")
4748+
let targetInfo = try libSwiftScanInstance.queryTargetInfo(invocationCommand: targetInfoArgs)
4749+
print(targetInfo)
47464750
}
47474751
}
47484752
}

0 commit comments

Comments
 (0)