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

Unified Diff: tests/lib/async/stack_trace01_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/catch_errors.dart ('k') | tests/lib/async/stack_trace02_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/stack_trace01_test.dart
diff --git a/tests/lib/async/zone_root_bind_test.dart b/tests/lib/async/stack_trace01_test.dart
similarity index 55%
copy from tests/lib/async/zone_root_bind_test.dart
copy to tests/lib/async/stack_trace01_test.dart
index 7b73f9851514f2a7bab8e72825cb6d4626bb15b5..9a34b221ff12d287323ff78734cb1899e5c1bdbc 100644
--- a/tests/lib/async/zone_root_bind_test.dart
+++ b/tests/lib/async/stack_trace01_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();
});
-}
+}
« no previous file with comments | « tests/lib/async/catch_errors.dart ('k') | tests/lib/async/stack_trace02_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698