diff options
Diffstat (limited to 'runtime/gc/heap_test.cc')
| -rw-r--r-- | runtime/gc/heap_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/heap_test.cc b/runtime/gc/heap_test.cc index 817c87681d..5e8c1e368a 100644 --- a/runtime/gc/heap_test.cc +++ b/runtime/gc/heap_test.cc @@ -42,7 +42,7 @@ class HeapTest : public CommonRuntimeTest { /*reuse=*/ false, /*reservation=*/ nullptr, &error_msg); - ASSERT_TRUE(reserved_.IsValid()) << error_msg; + // There is no guarantee that reserved_ will be valid (due to ASLR). See b/175018342. CommonRuntimeTest::SetUp(); } |