| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // VMOptions=--error_on_bad_type --error_on_bad_override | 4 // VMOptions=--error_on_bad_type --error_on_bad_override |
| 5 | 5 |
| 6 import 'package:observatory/service_io.dart'; | 6 import 'package:observatory/service_io.dart'; |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 import 'test_helper.dart'; | 8 import 'test_helper.dart'; |
| 9 import 'service_test_common.dart'; | 9 import 'service_test_common.dart'; |
| 10 | 10 |
| 11 doThrow() { | 11 doThrow() { |
| 12 throw "TheException"; // Line 13. | 12 throw "TheException"; // Line 13. |
| 13 return "end of doThrow"; | 13 return "end of doThrow"; |
| 14 } | 14 } |
| 15 | 15 |
| 16 var tests = [ | 16 var tests = [ |
| 17 hasStoppedWithUnhandledException, | 17 hasStoppedWithUnhandledException, |
| 18 | |
| 19 (Isolate isolate) async { | 18 (Isolate isolate) async { |
| 20 print("We stoppped!"); | 19 print("We stoppped!"); |
| 21 var stack = await isolate.getStack(); | 20 var stack = await isolate.getStack(); |
| 22 expect(stack['frames'][0].function.name, equals('doThrow')); | 21 expect(stack['frames'][0].function.name, equals('doThrow')); |
| 23 } | 22 } |
| 24 ]; | 23 ]; |
| 25 | 24 |
| 26 main(args) => runIsolateTestsSynchronous(args, | 25 main(args) => runIsolateTestsSynchronous(args, tests, |
| 27 tests, | 26 pause_on_unhandled_exceptions: true, testeeConcurrent: doThrow); |
| 28 pause_on_unhandled_exceptions: true, | |
| 29 testeeConcurrent: doThrow); | |
| OLD | NEW |