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

Unified Diff: utils/tests/pub/test_pub.dart

Issue 11421159: Give all async exceptions in pub some sort of stack trace. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
« utils/pub/curl_client.dart ('K') | « utils/pub/io.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/test_pub.dart
diff --git a/utils/tests/pub/test_pub.dart b/utils/tests/pub/test_pub.dart
index 56c298785f7e500e5d2f56ee27b7738c7a6de442..f96a3e2a134da0038de7fdbf4d7717f19806732f 100644
--- a/utils/tests/pub/test_pub.dart
+++ b/utils/tests/pub/test_pub.dart
@@ -848,6 +848,14 @@ abstract class Descriptor {
});
}
+ // TODO(nweiz): remove this when issue 4061 is fixed.
+ var stackTrace;
+ try {
+ throw null;
+ } catch (_, localStackTrace) {
+ stackTrace = localStackTrace;
+ }
+
return listDir(dir).chain((files) {
var matches = files.filter((file) => endsWithPattern(file, name));
if (matches.length == 0) {
@@ -870,7 +878,8 @@ abstract class Descriptor {
for (var failure in failures) {
error.add(" ").add(failure).add("\n");
}
- completer.completeException(new ExpectException(error.toString()));
+ completer.completeException(
+ new ExpectException(error.toString()), stackTrace);
}
for (var match in matches) {
« utils/pub/curl_client.dart ('K') | « utils/pub/io.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698