summary refs log tree commit diff stats
path: root/testament/lib
Commit message (Expand)AuthorAgeFilesLines
* make more standard libraries work with `nimPreviewSlimSystem` (#20343)ringabout2022-09-272-0/+5
* envPairs works in vm, nims (#18615)Timothee Cour2021-09-291-2/+5
* testutils.assertAll: show correct location on assert failure (#18299)Timothee Cour2021-06-191-2/+4
* testament :show duration also for failed tests; improve `tshould_not_work`; m...Timothee Cour2021-05-081-2/+8
* `typeof(voidStmt)` now works (#17807)Timothee Cour2021-04-231-6/+5
* privateAccess now works with ref | ptr (#17760)Timothee Cour2021-04-191-0/+20
* std/hashes: hash(ref|ptr|pointer) + other improvements (#17731)Timothee Cour2021-04-161-0/+4
* iterable[T] (#17196)Timothee Cour2021-04-111-0/+6
* fix #16693: testament spec nimout too lax (#16698)flywind2021-04-041-10/+23
* add getPort to resolve Port(0) (#17559)Timothee Cour2021-03-301-1/+2
* fix #17159 items(cstring) works in VM (#17160)Timothee Cour2021-02-241-0/+24
* remove tests/deps/ (#17132)Timothee Cour2021-02-231-1/+1
* remove .github/workflows/ci_ssl.yml; instead run via trunner_thirdparty (#16221)Timothee Cour2021-02-021-0/+8
* Testament small fixes (#16788)Juan Carlos2021-01-221-8/+6
* fix testament regression: installed testament works again with testament r pa...Timothee Cour2021-01-201-1/+18
* nimout now consistently uses nimoutCheck (#16189)Timothee Cour2020-12-011-0/+11
* docgen: mangling using _. instead of @@ to avoid issue (#14454)Timothee Cour2020-05-261-0/+9
* fix #6583, fix #14376, index+search now generated for all projects, many bug ...Timothee Cour2020-05-252-20/+14
* trunner was not actually being tested in non-CTFFI mode; minor testament clea...Timothee Cour2020-05-191-0/+38
* fix #14320 (tasyncawait.nim is recently very flaky) + avoid hardcoding servic...Timothee Cour2020-05-133-0/+41
* fixes #10273 execShellCmd now returns nonzero when child killed with signal +...Timothee Cour2019-01-131-0/+31
'alt'>
c80d563af ^
3b69a8d27 ^







6195dbe49 ^



















3b69a8d27 ^






























da7d6c844 ^
3b69a8d27 ^




























































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