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

Unified Diff: tests/standalone/src/io/TestingServer.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
« no previous file with comments | « tests/standalone/src/io/StreamPipeTest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/io/TestingServer.dart
diff --git a/tests/standalone/src/io/TestingServer.dart b/tests/standalone/src/io/TestingServer.dart
index 74c008fb6271921f436af993365dc3d46115c21f..f80288796282b858e1cbc053aabe4e2394597f3b 100644
--- a/tests/standalone/src/io/TestingServer.dart
+++ b/tests/standalone/src/io/TestingServer.dart
@@ -11,8 +11,8 @@ class TestingServer extends Isolate {
abstract void onConnection();
void main() {
- void errorHandlerServer() {
- Expect.fail("Server socket error");
+ void errorHandlerServer(Exception e) {
+ Expect.fail("Server socket error $e");
}
this.port.receive((message, SendPort replyTo) {
« no previous file with comments | « tests/standalone/src/io/StreamPipeTest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698