| Index: tests/standalone/vmservice/isolate_stacktrace_command_script.dart
|
| diff --git a/tests/standalone/vmservice/isolate_stacktrace_command_script.dart b/tests/standalone/vmservice/isolate_stacktrace_command_script.dart
|
| index a573126b244bf47284940fa6a8b40ba661a6d4b8..b9bbccff4a13b0dd6ef3cbd45a055e7829d37289 100644
|
| --- a/tests/standalone/vmservice/isolate_stacktrace_command_script.dart
|
| +++ b/tests/standalone/vmservice/isolate_stacktrace_command_script.dart
|
| @@ -9,6 +9,7 @@ import 'dart:isolate';
|
|
|
| void a() {
|
| int x = 0;
|
| + print(''); // Print blank line to signal that we are ready.
|
| while (true) {
|
| x &= x;
|
| }
|
| @@ -30,7 +31,6 @@ void myIsolateName() {
|
|
|
| main() {
|
| spawnFunction(myIsolateName);
|
| - print(''); // Print blank line to signal that we are ready.
|
| // Wait until signaled from spawning test.
|
| stdin.first.then((_) => exit(0));
|
| }
|
|
|