summary refs log blame commit diff stats
path: root/tests/async/tasyncfilewrite.nim
blob: cda612baeed207998fe8ba22a93720bc5d8d237c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                          
discard """
  output: '''string 1
string 2
string 3'''
"""
# bug #5532
import os, asyncfile, asyncdispatch

removeFile("test.txt")
let f = openAsync("test.txt", fmWrite)
var futs = newSeq[Future[void]]()
for i in 1..3:
  futs.add(f.write("string " & $i & "\n"))
waitFor(all(futs))
f.close()
echo readFile("test.txt")