Fix broken async tests.

This commit is contained in:
Dominik Picheta
2014-07-13 11:02:34 +01:00
parent 374706b1c3
commit cdcdab49b7
5 changed files with 7 additions and 7 deletions

View File

@@ -61,11 +61,11 @@ proc createServer(port: TPort) {.async.} =
discard server.TSocketHandle.listen()
while true:
var client = await accept(server)
readMessages(client)
asyncCheck readMessages(client)
# TODO: Test: readMessages(disp, await disp.accept(server))
createServer(TPort(10335))
launchSwarm(TPort(10335))
asyncCheck createServer(TPort(10335))
asyncCheck launchSwarm(TPort(10335))
while true:
poll()
if clientCount == swarmSize: break

View File

@@ -36,4 +36,4 @@ proc main {.async.} =
discard await g()
echo 6
main()
asyncCheck main()

View File

@@ -5,4 +5,4 @@ proc main {.async.} =
await newAsyncSocket().connect("www.google.com", TPort(80))
let x = await f()
main()
asyncCheck main()