Skip to content

Commit 21edc05

Browse files
committed
Debug commit to examine CI behavior
1 parent 1aa29fc commit 21edc05

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
@@ -4572,10 +4572,14 @@ final class SwiftDriverTests: XCTestCase {
45724572
let swiftScanLibPath = try Driver.getScanLibPath(of: driver.toolchain,
45734573
hostTriple: driver.hostTriple,
45744574
env: env)
4575+
print("Attempting to use scanner library at: \(swiftScanLibPath.debugDescription)")
45754576
if localFileSystem.exists(swiftScanLibPath) {
4577+
print("Library Exists")
45764578
let libSwiftScanInstance = try SwiftScan(dylib: swiftScanLibPath)
45774579
if libSwiftScanInstance.canQueryTargetInfo() {
4578-
let _ = try libSwiftScanInstance.queryTargetInfo(invocationCommand: targetInfoArgs)
4580+
print("Library able to query target info")
4581+
let targetInfo = try libSwiftScanInstance.queryTargetInfo(invocationCommand: targetInfoArgs)
4582+
print(targetInfo)
45794583
}
45804584
}
45814585
}

0 commit comments

Comments
 (0)