@@ -84,17 +84,17 @@ struct Logger {
8484// --- tests ---
8585
8686func test1( password: String , passwordHash : String , passphrase: String , pass_phrase: String ) {
87- print ( password) // $ MISSING: hasCleartextLogging=87
88- print ( password, separator: " " ) // $ MISSING: $ hasCleartextLogging=88
87+ print ( password) // $ hasCleartextLogging=87
88+ print ( password, separator: " " ) // $ $ hasCleartextLogging=88
8989 print ( " " , separator: password) // $ hasCleartextLogging=89
90- print ( password, separator: " " , terminator: " " ) // $ MISSING: hasCleartextLogging=90
90+ print ( password, separator: " " , terminator: " " ) // $ hasCleartextLogging=90
9191 print ( " " , separator: password, terminator: " " ) // $ hasCleartextLogging=91
9292 print ( " " , separator: " " , terminator: password) // $ hasCleartextLogging=92
9393 print ( passwordHash) // Safe
9494
9595 NSLog ( password) // $ hasCleartextLogging=95
96- NSLog ( " %@ " , password as! CVarArg ) // $ MISSING: hasCleartextLogging=96
97- NSLog ( " %@ %@ " , " " as! CVarArg , password as! CVarArg ) // $ MISSING: hasCleartextLogging=97
96+ NSLog ( " %@ " , password as! CVarArg ) // $ hasCleartextLogging=96
97+ NSLog ( " %@ %@ " , " " as! CVarArg , password as! CVarArg ) // $ hasCleartextLogging=97
9898 NSLog ( " \( password) " ) // $ hasCleartextLogging=98
9999 NSLogv ( " %@ " , getVaList ( [ password as! CVarArg ] ) ) // $ hasCleartextLogging=99
100100 NSLogv ( " %@ %@ " , getVaList ( [ " " as! CVarArg , password as! CVarArg ] ) ) // $ hasCleartextLogging=100
0 commit comments