diff options
Diffstat (limited to 'runtime/native_stack_dump.cc')
-rw-r--r-- | runtime/native_stack_dump.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/native_stack_dump.cc b/runtime/native_stack_dump.cc index 14f3f45f9e..b3a47c3053 100644 --- a/runtime/native_stack_dump.cc +++ b/runtime/native_stack_dump.cc @@ -289,8 +289,10 @@ void DumpNativeStack(std::ostream& os, ArtMethod* current_method, void* ucontext_ptr, bool skip_frames) { - // b/18119146 - if (RUNNING_ON_MEMORY_TOOL != 0) { + // Historical note: This was disabled when running under Valgrind (b/18119146). + // TODO: Valgrind is no longer supported, but Address Sanitizer is: + // check whether this test works with ASan. + if (kRunningOnMemoryTool) { return; } |