diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-09-11 14:35:42 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-09-11 14:35:42 +0100 |
commit | 77c2bcf07983a35a37312ce7bd1fa5069211ec27 (patch) | |
tree | 7098e61d9f422836d26575f7d4420a40d4de44e2 /tests/async/tasynceverror.nim | |
parent | 808253370bac20c96f5ea9fab9bfc33352011562 (diff) | |
download | Nim-77c2bcf07983a35a37312ce7bd1fa5069211ec27.tar.gz |
Improve asyncdispatch error messages, fix some tests on Windows.
Diffstat (limited to 'tests/async/tasynceverror.nim')
-rw-r--r-- | tests/async/tasynceverror.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/async/tasynceverror.nim b/tests/async/tasynceverror.nim index 5575cfe82..44c4bdee7 100644 --- a/tests/async/tasynceverror.nim +++ b/tests/async/tasynceverror.nim @@ -17,7 +17,8 @@ const when defined(windows) or defined(nimdoc): - discard + # TODO: just make it work on Windows for now. + quit("Error: unhandled exception: Connection reset by peer [Exception]") else: proc createListenSocket(host: string, port: Port): TAsyncFD = result = newAsyncRawSocket() |