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

Unified Diff: tests/standalone/src/io/SocketManyConnectionsTest.dart

Issue 9699017: Start better error reporting for sockets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed bug Created 8 years, 9 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
Index: tests/standalone/src/io/SocketManyConnectionsTest.dart
diff --git a/tests/standalone/src/io/SocketManyConnectionsTest.dart b/tests/standalone/src/io/SocketManyConnectionsTest.dart
index bb7f9fbfe153da877d957399e07986eb0e9edaf9..0ee1cdc8a19ff81645cfa2116a8e7b1ee93d72b8 100644
--- a/tests/standalone/src/io/SocketManyConnectionsTest.dart
+++ b/tests/standalone/src/io/SocketManyConnectionsTest.dart
@@ -74,8 +74,8 @@ class TestServer extends TestingServer {
connection.close();
}
- void errorHandler() {
- print("Socket error");
+ void errorHandler(Exception e) {
+ print("Socket error $e");
connection.close();
}
« no previous file with comments | « tests/standalone/src/io/SocketExceptionTest.dart ('k') | tests/standalone/src/io/SocketStreamCloseTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698