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

Unified Diff: tests/lib/async/stack_trace22_test.dart

Issue 25027004: Add second argument to Future error handlers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/lib/async/stack_trace19_test.dart ('k') | tests/lib/async/stack_trace23_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/stack_trace22_test.dart
diff --git a/tests/lib/async/zone_root_bind_test.dart b/tests/lib/async/stack_trace22_test.dart
similarity index 52%
copy from tests/lib/async/zone_root_bind_test.dart
copy to tests/lib/async/stack_trace22_test.dart
index 7b73f9851514f2a7bab8e72825cb6d4626bb15b5..0ac1b8e57d5f0e41714a23bd1c407c25e9902d61 100644
--- a/tests/lib/async/zone_root_bind_test.dart
+++ b/tests/lib/async/stack_trace22_test.dart
@@ -6,13 +6,20 @@ import 'package:expect/expect.dart';
import 'package:async_helper/async_helper.dart';
import 'dart:async';
+StackTrace captureStackTrace() {
+ try {
+ throw 0;
+ } catch (e, st) {
+ return st;
+ }
+}
+
main() {
- Expect.identical(Zone.ROOT, Zone.current);
- Zone forked = Zone.current.fork();
- var f = Zone.current.bindCallback(() {
- Expect.identical(Zone.ROOT, Zone.current);
- }, runGuarded: false);
- forked.run(() {
- f();
- });
-}
+ StackTrace trace = captureStackTrace();
+ asyncStart();
+ var f = new Future.error(499, trace);
+ f.catchError((e, st) {
+ Expect.identical(trace, st);
+ asyncEnd();
+ }, test: (e) => e == 499);
+}
« no previous file with comments | « tests/lib/async/stack_trace19_test.dart ('k') | tests/lib/async/stack_trace23_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698