summary refs log tree commit diff stats
path: root/tests/async
Commit message (Expand)AuthorAgeFilesLines
* deprecate unsafeAddr; extend addr (#19373)flywind2022-01-161-1/+1
* style usages part one (openarray => openArray) (#19321)flywind2022-01-041-2/+2
* fixes #18858 [backport] (#18868)Andreas Rumpf2021-09-191-0/+1
* make proc names consistent (#18626)flywind2021-08-015-5/+5
* asyncdispatch+stackTraceOverride: fix premature collection (#18039) [backport...Ștefan Talpalaru2021-05-191-2/+2
* move travis, appveyor, ci.yml.disabled to `unmaintained/` (#17828)Timothee Cour2021-04-241-1/+0
* simplify asyncfutures, asyncmacro (#17633)Timothee Cour2021-04-141-8/+24
* close #16786 (#17598)flywind2021-03-311-1/+35
* Fix void async in templates (#17562)Ardek Romak2021-03-301-0/+12
* use doAssert in tests (#16486)flywind2020-12-287-11/+11
* testament spec: remove errmsg alias of errormsg (#16188)Timothee Cour2020-11-291-1/+1
* make megatest consistent with unjoined tests wrt newlines, honor newlines in ...Timothee Cour2020-11-281-1/+2
* fix #9695 asyncmacro: tfuturevar fails when activated [backport: 1.0] (#16090)flywind2020-11-221-5/+0
* fixes #15804 (#15820)Andreas Rumpf2020-11-022-3/+18
* closureiters: fixes #15243 (#15454) [backport:1.2]Andreas Rumpf2020-10-022-66/+25
* fix #15148 (#15149)flywind2020-08-081-0/+12
* [Backport] Fixes callbacks being dropped on Linux/macOS/BSD. (#15012)Dominik Picheta2020-07-191-0/+67
* scoped memory management (#14790)Andreas Rumpf2020-07-041-1/+2
* Fix asyncdispatch drain behavior (#14820) (#14838)Ray Imber2020-06-301-0/+25
* Add test-cases to some fixed issues to close them (#14795)Danil Yarantsev2020-06-241-0/+7
* fix #13899 defer now works with async (#14723)Timothee Cour2020-06-191-7/+18
* fix #14685 tests/async/t7758.nim flaky (#14721)Timothee Cour2020-06-191-2/+7
* use check to investigate #14685 flaky tests/async/t7758.nim (#14689)Timothee Cour2020-06-161-2/+3
* fix #13166 tioselectors flaky test on freebsd+OSX (#14634)Timothee Cour2020-06-121-4/+5
* enable tioselectors on osx; more diagnostic for #13166 (#14625)Timothee Cour2020-06-091-5/+3
* fixes #14279 (#14618)Andreas Rumpf2020-06-091-0/+15
* fix #14320 (tasyncawait.nim is recently very flaky) + avoid hardcoding servic...Timothee Cour2020-05-135-77/+50
* discardable async procs are now an error (#14176)hlaaftana2020-05-011-0/+9
* fix sendTo and recvFrom in asyncnet (#14154)rockcavera2020-04-301-17/+8
* Error -> Defect for defects (#13908)Jacek Sieka2020-04-282-9/+9
* added high level sendTo and recvFrom to std/asyncnet (UDP functionality) (#14...rockcavera2020-04-261-0/+99
* Make await a template (#12085)Alexander Ivanov2020-04-254-2/+39
* Fix #13889 with testcase (#13896) [backport]Clyybber2020-04-061-0/+27
* faster CIs (#13803)Miran2020-03-309-34/+21
* fix deprecations and other warnings (#13748)Miran2020-03-257-17/+16
* fix #12919 tasyncclosestall flaky: Address already in use (#12934)Timothee Cour2019-12-191-1/+3
* increase the timeout for 'tasyncclosestall' (#12744)Miran2019-11-261-1/+1
* remove deprecated procs (#12535)Andreas Rumpf2019-11-051-2/+2
* proof that refcounting can handle Nim's async (#12533)Andreas Rumpf2019-10-281-0/+73
* Merge branch 'devel' into IOSelector_unregister_fixDominik Picheta2019-10-221-0/+10
|\
| * Fixed yield in nkCheckedFieldExpr (#12429) [backport]Yuriy Glukhov2019-10-151-0/+10
* | lowered the number of events in the test because some CI's have an extremely ...Ray Imber2019-10-071-2/+2
* | Test + fix for epoll and kqueue selector modules to properly unregisterRay Imber2019-10-061-0/+23
|/
* azure: disable failing testsLeorize2019-10-031-0/+1
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-1/+1
* Fix issue with long wait for passed timer [bugfix] (#12221)PMunch2019-09-221-0/+52
* asyndispatch: removed deprecated setEvent procAraq2019-09-212-7/+7
* int128 on firstOrd, lastOrd and lengthOrd (#11701)Arne Döring2019-08-071-2/+7
* make async tests green againAndreas Rumpf2019-07-111-5/+5
* make tests green againAraq2019-07-101-5/+5
d='n13' href='#n13'>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