| Index: tests/standalone/io/testing_server.dart
|
| diff --git a/tests/standalone/io/testing_server.dart b/tests/standalone/io/testing_server.dart
|
| index 79ab136a7a764cdd47e3b0ad10d19667e5afabd2..79f0175304e24af9cf80fc2f4db33c95c58be07c 100644
|
| --- a/tests/standalone/io/testing_server.dart
|
| +++ b/tests/standalone/io/testing_server.dart
|
| @@ -13,7 +13,10 @@ abstract class TestingServer {
|
| void onConnection(Socket connection); // Abstract.
|
|
|
| void errorHandlerServer(e) {
|
| - Expect.fail("Server socket error $e");
|
| + String msg = "Server socket error $e";
|
| + var trace = getAttachedStackTrace(e);
|
| + if (trace != null) msg += "\nStackTrace: $trace";
|
| + Expect.fail(msg);
|
| }
|
|
|
| void dispatch(message, SendPort replyTo) {
|
|
|