Skip to content

Commit 21298ee

Browse files
aamcommit-bot@chromium.org
authored andcommitted
Reland "[vm/concurrency] Enable isolate groups by-default in all modes"
This reverts commit d0a3daf that reverted the initial land. The fix for the problem that required the revert landed in https://dart.googlesource.com/sdk/+/5ccf97a5a950ef70f41d84f186dad550d4acda01 Issue #36097 TEST=ci Change-Id: Ie92074059319e046809169d9e16d459ce1c2848f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/212481 Reviewed-by: Martin Kustermann <[email protected]> Commit-Queue: Alexander Aprelev <[email protected]>
1 parent 535a9be commit 21298ee

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

runtime/tests/vm/dart/isolates/dart_api_create_lightweight_isolate_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
// SharedObjects=ffi_test_functions
6-
// VMOptions=
6+
// VMOptions=--no-enable-isolate-groups
77
// VMOptions=--enable-isolate-groups --disable-heap-verification
88

99
import 'dart:async';

runtime/tests/vm/dart_2/isolates/dart_api_create_lightweight_isolate_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// @dart = 2.9
66

77
// SharedObjects=ffi_test_functions
8-
// VMOptions=
8+
// VMOptions=--no-enable-isolate-groups
99
// VMOptions=--enable-isolate-groups --disable-heap-verification
1010

1111
import 'dart:async';

runtime/vm/flag_list.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,7 @@ constexpr bool FLAG_support_il_printer = false;
196196
P(retain_code_objects, bool, true, \
197197
"Serialize all code objects even if not otherwise " \
198198
"needed in the precompiled runtime.") \
199-
P(enable_isolate_groups, bool, false, \
200-
"Enable isolate group support in AOT.") \
199+
P(enable_isolate_groups, bool, true, "Enable isolate group support.") \
201200
P(show_invisible_frames, bool, false, \
202201
"Show invisible frames in stack traces.") \
203202
D(trace_cha, bool, false, "Trace CHA operations") \

0 commit comments

Comments
 (0)