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

Unified Diff: runtime/vm/heap_test.cc

Issue 1974873002: Disable concurrent marking/sweeping, and background compilation on ARMv5TE (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: More shuffling things around Created 4 years, 7 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 | « runtime/vm/gc_marker.cc ('k') | runtime/vm/intrinsifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/heap_test.cc
diff --git a/runtime/vm/heap_test.cc b/runtime/vm/heap_test.cc
index ad01502a8829c7aae27f80ac502e51e9eda675cc..79c0ca983c6993aabf096fe84ee23ef0ce3e719e 100644
--- a/runtime/vm/heap_test.cc
+++ b/runtime/vm/heap_test.cc
@@ -12,8 +12,6 @@
namespace dart {
-DECLARE_FLAG(int, marker_tasks);
-
TEST_CASE(OldGC) {
const char* kScriptChars =
"main() {\n"
@@ -32,7 +30,7 @@ TEST_CASE(OldGC) {
heap->CollectGarbage(Heap::kOld);
}
-
+#if !defined(PRODUCT)
TEST_CASE(OldGC_Unsync) {
FLAG_marker_tasks = 0;
const char* kScriptChars =
@@ -51,7 +49,7 @@ TEST_CASE(OldGC_Unsync) {
Heap* heap = isolate->heap();
heap->CollectGarbage(Heap::kOld);
}
-
+#endif
TEST_CASE(LargeSweep) {
const char* kScriptChars =
« no previous file with comments | « runtime/vm/gc_marker.cc ('k') | runtime/vm/intrinsifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698