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

Side by Side Diff: runtime/observatory/tests/service/pause_on_unhandled_async_exceptions_test.dart

Issue 2815863002: Detect unhandled exceptions in async functions without an awaiter (Closed)
Patch Set: rmacnak review Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 --async_debugger
5 5
6 import 'package:observatory/service_io.dart'; 6 import 'package:observatory/service_io.dart';
7 import 'package:observatory/models.dart' as M; 7 import 'package:observatory/models.dart' as M;
8 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
9 import 'test_helper.dart'; 9 import 'test_helper.dart';
10 import 'service_test_common.dart'; 10 import 'service_test_common.dart';
11 11
12 const LINE_A = 34; 12 const LINE_A = 34;
13 13
14 class Foo {} 14 class Foo {}
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 expect(asyncStack[2].kind, equals(M.FrameKind.asyncSuspensionMarker)); 48 expect(asyncStack[2].kind, equals(M.FrameKind.asyncSuspensionMarker));
49 expect(asyncStack[3].toString(), contains('testeeMain')); 49 expect(asyncStack[3].toString(), contains('testeeMain'));
50 // We've stopped at LINE_A. 50 // We've stopped at LINE_A.
51 expect( 51 expect(
52 await asyncStack[3].location.toUserString(), contains('.dart:$LINE_A')); 52 await asyncStack[3].location.toUserString(), contains('.dart:$LINE_A'));
53 } 53 }
54 ]; 54 ];
55 55
56 main(args) => runIsolateTests(args, tests, 56 main(args) => runIsolateTests(args, tests,
57 pause_on_unhandled_exceptions: true, testeeConcurrent: testeeMain); 57 pause_on_unhandled_exceptions: true, testeeConcurrent: testeeMain);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698