| Index: runtime/observatory/tests/service/pause_on_unhandled_exceptions_test.dart
|
| diff --git a/runtime/observatory/tests/service/pause_on_unhandled_exceptions_test.dart b/runtime/observatory/tests/service/pause_on_unhandled_exceptions_test.dart
|
| index 4a6b2ddf2ac8656976fd7f6151a132bc987e6ab7..e9f233b85bde4aab15e3a0f23fb1cfbbbd835fcd 100644
|
| --- a/runtime/observatory/tests/service/pause_on_unhandled_exceptions_test.dart
|
| +++ b/runtime/observatory/tests/service/pause_on_unhandled_exceptions_test.dart
|
| @@ -15,13 +15,15 @@ doThrow() {
|
|
|
| var tests = [
|
| hasStoppedWithUnhandledException,
|
| +
|
| (Isolate isolate) async {
|
| + print("We stoppped!");
|
| var stack = await isolate.getStack();
|
| expect(stack['frames'][0].function.name, equals('doThrow'));
|
| }
|
| ];
|
|
|
| -main(args) => runIsolateTests(args,
|
| - tests,
|
| - pause_on_unhandled_exceptions: true,
|
| - testeeConcurrent: doThrow);
|
| +main(args) => runIsolateTestsSynchronous(args,
|
| + tests,
|
| + pause_on_unhandled_exceptions: true,
|
| + testeeConcurrent: doThrow);
|
|
|