File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4572,10 +4572,14 @@ final class SwiftDriverTests: XCTestCase {
4572
4572
let swiftScanLibPath = try Driver . getScanLibPath ( of: driver. toolchain,
4573
4573
hostTriple: driver. hostTriple,
4574
4574
env: env)
4575
+ print ( " Attempting to use scanner library at: \( swiftScanLibPath. debugDescription) " )
4575
4576
if localFileSystem. exists ( swiftScanLibPath) {
4577
+ print ( " Library Exists " )
4576
4578
let libSwiftScanInstance = try SwiftScan ( dylib: swiftScanLibPath)
4577
4579
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)
4579
4583
}
4580
4584
}
4581
4585
}
You can’t perform that action at this time.
0 commit comments