Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 385 by [email protected]: Whitespace difference between asan and
msan outputs
https://code.google.com/p/address-sanitizer/issues/detail?id=385
ASAN and MSAN should have same output format, but there is a whitespace
missing from ASAN output after ==$PID==.
Sample ASAN output:(Chrome prebuild)
==31212==ERROR: AddressSanitizer: heap-buffer-overflow ...
asan_output.split(' ')
[ '==31212==ERROR:',
'AddressSanitizer:',
'heap-buffer-overflow' ]
Sample MSAN output:(Chrome prebuild)
==18899== WARNING: MemorySanitizer: use-of-uninitialized-value ...
msan_output.split(' ')
[ '==18899==',
'WARNING:',
'MemorySanitizer:',
'use-of-uninitialized-value' ]
This issue prevents usage of same parser, that uses whitespace splitting,
for both ASAN and MSAN outputs without additional checks.
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
You received this message because you are subscribed to the Google Groups
"address-sanitizer" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.