Evgenii Stepanov
Evgenii Stepanov
Could you reproduce it with a standalone binary? Works fine for me with ndk r19.
log_to_syslog=false is because wrap.sh gets a logwrapper around it. Without that every line will be written twice. On Wed, Apr 10, 2019 at 11:47 AM Elliott Hughes wrote: > the...
It's in https://github.com/google/sanitizers/wiki/SanitizerCommonFlags, color = (always|never|auto). "auto" means only if isatty(stderr)==true. I don't understand why wrap.sh's stderr would be a tty device. On Mon, Apr 15, 2019 at 1:08 PM...
Do you mind sending me a patch? On Wed, Apr 17, 2019 at 12:42 PM Dan Albert wrote: > Fair enough. I suppose at least until gradle makes this less...
That's basically all I know. Upstream tests are disabled (and AFAIK have never been enabled), so it is likely broken at this point.
Not yet, sorry. See https://github.com/google/sanitizers/issues/379
The test case needs "volatile" in the declaration of Sp, otherwise this is a statically-obvious UB which gets compiled out before ASan can see it. This is not great, but...
Please at least make sure it does not apply to malloc() and friends - that would break LD_PRELOAD-style interposition of the allocator. ASan on non-arm64 is still a thing (HWASan...
I think this should work, as long as all stack frames between operator new and malloc have frame pointers (none of them are leaf functions for obvious reasons). In fact,...