summary refs log tree commit diff stats
path: root/tests/stdlib/ttempfiles.nim
Commit message (Collapse)AuthorAgeFilesLines
* stdlib tests now check refc too (#21664)ringabout2023-04-211-0/+1
| | | | | | | | | | | * stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
* make more standard libraries work with `nimPreviewSlimSystem` (#20343)ringabout2022-09-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | * make more standard libraries work with `nimPreviewSlimSystem` * typo * part two * Delete specutils.nim * fixes more tests * more fixes * fixes tests * fixes three more tests * add formatfloat import * fix * last
* Revert #17398 and #17402 (#18480)Miran2021-07-181-1/+1
| | | | | | | | | | | * Revert "followup #17398: `getTempDir`, `getConfigDir` now do not have trailing DirSep (#17402)" This reverts commit 2356d0603f70cad90f76fa57999054bf5c0a9157. * Revert "fix #17393 getHomeDir and expandTilde should not include trailing `/` (#17398)" This reverts commit bebf2ce24a43bef4cde5c90c4010631a1e4a7927. * fix test
* improve std/tempfiles (#17920)Timothee Cour2021-05-111-10/+42
| | | | | | | | * improve std/tempfiles * fixup * fix windows * improve test * improve runnableExamples and tests * address comment
* close #9372 add std/tempfiles (#17361)flywind2021-04-211-0/+17
* close #9372 add std/tempfile
a5ee'>57699011 ^
a26cc359 ^
6f5d7864 ^
ec926027 ^
3c435756 ^
1228ec73 ^
ec926027 ^


1228ec73 ^

7da71d03 ^
0edf822f ^
7da71d03 ^
9fc64bbc ^
10e449b5 ^
ec926027 ^
9fc64bbc ^

c475ccc3 ^

0edf822f ^
c475ccc3 ^

f1e953d0 ^
ec926027 ^

f1e953d0 ^
decaddb4 ^
a8007cc4 ^
f1e953d0 ^
ec926027 ^
a8007cc4 ^
82ac0b7e ^
c7c822b2 ^
f1a6f323 ^
d241c9c4 ^





f1a6f323 ^
d241c9c4 ^
eb7afe5d ^
d241c9c4 ^
9cf71627 ^
f1e953d0 ^
6f5d7864 ^
9fc64bbc ^
0edf822f ^
9fc64bbc ^

3c435756 ^


2199940a ^
ec926027 ^















b39ceb27 ^
e7f76736 ^
e7f76736 ^
8c9e97ae ^
e7f76736 ^
b39ceb27 ^
e7f76736 ^
b39ceb27 ^


a8007cc4 ^
c17d5591 ^
a8007cc4 ^
e7f76736 ^
ccd792da ^
e7f76736 ^



267ebb59 ^
8c9e97ae ^
267ebb59 ^
f5f4b698 ^



ad8e984f ^
8c9e97ae ^
2b7a7498 ^
267ebb59 ^
ccd792da ^


267ebb59 ^

7284d503 ^
96f19e1e ^
8c9e97ae ^
3c435756 ^
3c435756 ^
2199940a ^
3c435756 ^
8c9e97ae ^
b1bbe92d ^
96f19e1e ^
3c435756 ^
3c435756 ^
7284d503 ^

cae5461b ^
916ae8f5 ^
cae5461b ^
c82d0176 ^
a4ef18b1 ^
a26cc359 ^

a4ef18b1 ^
fae70331 ^

b291f85b ^



cae5461b ^



6b6dfb0c ^
3ba63579 ^
fae70331 ^
0edc9471 ^
fae70331 ^
57699011 ^
b291f85b ^

cae5461b ^

c1a50c82 ^
6b6dfb0c ^
3076bab4 ^


f1a6f323 ^
f48f6c14 ^
eaa75c87 ^
decaddb4 ^
6b6dfb0c ^



c82d0176 ^



decaddb4 ^







fc55fea0 ^






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