Task to make 98%+ of compatible tests pass under ASan and LSan. Those that are not compatible should be skipped. The idea is to make the results less noisy, such that a failing test is actually a bug and not potentially an incompatible test. Note that the failing tests are not exhibiting false positives.
The majority of failing tests under ASan seem to be related to ZGC failing to reserve enough memory at startup. This might be because of ASan reserving the higher regions of memory and ZGC being unable to reserve a large enough contiguous section of memory. It could also be a ulimit issue. The others are NMT doing things like checking double free which ASan/LSan do not like.
The majority of failing tests under ASan seem to be related to ZGC failing to reserve enough memory at startup. This might be because of ASan reserving the higher regions of memory and ZGC being unable to reserve a large enough contiguous section of memory. It could also be a ulimit issue. The others are NMT doing things like checking double free which ASan/LSan do not like.