Fix crash by disabling problematic functionalitie (VerifyPointers)

BUG=
R=asiva@google.com

Review URL: https://codereview.chromium.org/1848843002 .
This commit is contained in:
Srdjan Mitrovic 2016-03-31 10:35:52 -07:00
parent 559bc17535
commit 8e03dddabf

View file

@ -324,6 +324,12 @@ UNIT_TEST_CASE(CustomIsolates) {
#ifdef DEBUG
FLAG_verify_on_transition = true;
#endif
// Cannot verify heap while running compilation in background.
// Issue #26149.
FLAG_background_compilation = false;
// Issue #26150.
FLAG_use_osr = false;
event_queue = new EventQueue();
Dart_Isolate dart_isolate = TestCase::CreateTestIsolate();