File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4739,10 +4739,14 @@ final class SwiftDriverTests: XCTestCase {
4739
4739
let swiftScanLibPath = try Driver . getScanLibPath ( of: driver. toolchain,
4740
4740
hostTriple: driver. hostTriple,
4741
4741
env: env)
4742
+ print ( " Attempting to use scanner library at: \( swiftScanLibPath. debugDescription) " )
4742
4743
if localFileSystem. exists ( swiftScanLibPath) {
4744
+ print ( " Library Exists " )
4743
4745
let libSwiftScanInstance = try SwiftScan ( dylib: swiftScanLibPath)
4744
4746
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)
4746
4750
}
4747
4751
}
4748
4752
}
You can’t perform that action at this time.
0 commit comments