summary refs log tree commit diff stats
path: root/tests/async
Commit message (Expand)AuthorAgeFilesLines
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-045-12/+12
* Check for async errors inKay Zheng2015-04-181-0/+33
* Only run the test for the fixed version of poll(...)Kay Zheng2015-04-171-33/+36
* Add a test case for the EvError handling issueKay Zheng2015-04-171-0/+62
* Fix infinite recursion when await is in except body.Dominik Picheta2015-03-302-0/+28
* Async await try statement fixes.Dominik Picheta2015-02-092-1/+41
* Improved tasyncawait test.Dominik Picheta2014-12-261-3/+1
* Deprecated asyncio module. Fixed old tests.Dominik Picheta2014-12-262-5/+5
* More empty stmt fixes.Dominik Picheta2014-09-092-11/+4
* Fixes async tests.Dominik Picheta2014-09-093-10/+10
* Implements getCurrentException for try in async procs. Ref #1487.Dominik Picheta2014-09-091-2/+2
* Multiple exception idents in except for async. Ref #1487.Dominik Picheta2014-09-082-1/+52
* Implemented asyncfile for Posix.Dominik Picheta2014-09-051-5/+27
* Added Windows asyncfile implementation.Dominik Picheta2014-09-051-0/+14
* further adaptationsAraq2014-08-292-2/+2
* fix failed tests due to gcsafeAraq2014-08-122-9/+12
* Fixes incorrect async exception handling. Adds sleepAsync.Dominik Picheta2014-08-091-0/+38
* Fix broken async tests.Dominik Picheta2014-07-133-5/+5
* Rename asyncdispatch.close to asyncdispatch.closeSocket.Dominik Picheta2014-05-231-3/+3
* Fix #1170.EXetoC2014-05-041-0/+39
* Fix #1171.EXetoC2014-05-031-0/+8
* Tester now appreciates the test target. Modified 'cmd' in specs.Dominik Picheta2014-04-162-3/+2
* Move asyncdispatch tests to asyncnet.Dominik Picheta2014-03-261-2/+0
* Moved the global dispatcher to asyncdispatch.Dominik Picheta2014-03-231-23/+22
* Fixes tasyncawait and the net module on Linux.Dominik Picheta2014-03-231-1/+1
* Copied most blocking socket operations to the net module.Dominik Picheta2014-03-221-3/+14
* PFuture[void] now works.Dominik Picheta2014-03-151-10/+12
* File descriptors are now removed from fds list explicitly in close().Dominik Picheta2014-03-141-3/+3
* Fixed tasyncawait on Windows.Dominik Picheta2014-03-121-2/+2
* tasyncawait now works on Linux.Dominik Picheta2014-03-111-8/+1
* Fixes to asyncio2 on Linux.Dominik Picheta2014-03-091-1/+9
* Implemented selector support for asyncio2.Dominik Picheta2014-02-221-2/+2
* Fix processing of 'await' with a nnkCall.Dominik Picheta2014-02-161-2/+1
* Added await test.Dominik Picheta2014-02-161-0/+65
* new tester; all tests categorizedAraq2014-01-132-0/+169
0 EcmaScript => JS. Fixes #330' href='/ahoang/Nim/commit/compiler/platform.nim?h=devel&id=1785c6877ba0d5329c700e82b6ccf0e7a2e684b8'>1785c6877 ^
142e849b9 ^

e25474154 ^
















f56816def ^
e25474154 ^


















8ce705f68 ^

e25474154 ^
e25474154 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224