Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Unified Diff: runtime/vm/custom_isolate_test.cc

Issue 1848843002: Fix crash by disabling problematic functionalitie (VerifyPointers) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/custom_isolate_test.cc
diff --git a/runtime/vm/custom_isolate_test.cc b/runtime/vm/custom_isolate_test.cc
index 1995ee651c4e50723d34aa9997487f4660c895e8..03c57732f00838261d7a44dd9598c8f7c55618ea 100644
--- a/runtime/vm/custom_isolate_test.cc
+++ b/runtime/vm/custom_isolate_test.cc
@@ -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();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698