@@ -343,15 +343,15 @@ func test6(passwordString: String) {
343
343
NSException . raise ( NSExceptionName ( " exception " ) , format: " \( passwordString) is incorrect! " , arguments: getVaList ( [ ] ) ) // $ MISSING: hasCleartextLogging=
344
344
NSException . raise ( NSExceptionName ( " exception " ) , format: " %s is incorrect! " , arguments: getVaList ( [ passwordString] ) ) // $ MISSING: hasCleartextLogging=
345
345
346
- _ = dprintf ( 0 , " \( passwordString) is incorrect! " ) // $ MISSING: hasCleartextLogging=
347
- _ = dprintf ( 0 , " %s is incorrect! " , passwordString) // $ MISSING: hasCleartextLogging=
348
- _ = dprintf ( 0 , " %s: %s is incorrect! " , " foo " , passwordString) // $ MISSING: hasCleartextLogging=
349
- _ = vprintf ( " \( passwordString) is incorrect! " , getVaList ( [ ] ) ) // $ MISSING: hasCleartextLogging=
350
- _ = vprintf ( " %s is incorrect! " , getVaList ( [ passwordString] ) ) // $ MISSING: hasCleartextLogging=
346
+ _ = dprintf ( 0 , " \( passwordString) is incorrect! " ) // $ hasCleartextLogging=346
347
+ _ = dprintf ( 0 , " %s is incorrect! " , passwordString) // $ hasCleartextLogging=347
348
+ _ = dprintf ( 0 , " %s: %s is incorrect! " , " foo " , passwordString) // $ hasCleartextLogging=348
349
+ _ = vprintf ( " \( passwordString) is incorrect! " , getVaList ( [ ] ) ) // $ hasCleartextLogging=349
350
+ _ = vprintf ( " %s is incorrect! " , getVaList ( [ passwordString] ) ) // $ hasCleartextLogging=350
351
351
_ = vfprintf ( nil , " \( passwordString) is incorrect! " , getVaList ( [ ] ) ) // $ hasCleartextLogging=351
352
352
_ = vfprintf ( nil , " %s is incorrect! " , getVaList ( [ passwordString] ) ) // $ hasCleartextLogging=352
353
- _ = vasprintf_l ( nil , nil , " \( passwordString) is incorrect! " , getVaList ( [ ] ) ) // good (`sprintf` is not logging)
354
- _ = vasprintf_l ( nil , nil , " %s is incorrect! " , getVaList ( [ passwordString] ) ) // good (`sprintf` is not logging)
353
+ _ = vasprintf_l ( nil , nil , " \( passwordString) is incorrect! " , getVaList ( [ ] ) ) // $ SPURIOUS hasCleartextLogging=353 good (`sprintf` is not logging)
354
+ _ = vasprintf_l ( nil , nil , " %s is incorrect! " , getVaList ( [ passwordString] ) ) // $ SPURIOUS hasCleartextLogging=354 good (`sprintf` is not logging)
355
355
}
356
356
357
357
func test7( authKey: String , authKey2: Int , authKey3: Float ) {
0 commit comments