summary refs log tree commit diff stats
path: root/tests/newconfig
Commit message (Collapse)AuthorAgeFilesLines
* fix #8219; nim check/dump shouldn't run single nimscript project [backport: ↵flywind2022-03-261-4/+2
| | | | | | 1.6] (#19641) * fix #8219; nim check/dump shouldn't run single nimscript project [backport: 1.6]
* fix nim check nimscript [backport: 1.6] (#19444)flywind2022-03-231-0/+11
| | | | fix #19440; fix #3858
* config system: special case -d:release and -d:danger [backport:1.4] (#18051)Andreas Rumpf2021-05-202-2/+4
|
* fix #17190 `nimscript` now accepts arbitrary file extensions for `nim e ↵flywind2021-04-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | main.customext` (#17596) * fix #17190 * cah * merge * Update tnimscriptwithnimext.nim * Update tnimscriptwithmacro.nims * Apply suggestions from code review * Delete tnimscriptwithnimext.nim * Update tests/tools/tnimscriptwithmacro.nims * fix * fix * add a test * Apply suggestions from code review Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> * Apply suggestions from code review * Update changelog.md Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
* fix #16526 run config.nims before foo.nim.cfg (#16557)Timothee Cour2021-01-025-0/+0
| | | | | * fix #16526 run config.nims before foo.nim.cfg * add test
* use doAssert in tests (#16486)flywind2020-12-281-22/+22
|
* deprecate existsDir; use dirExists instead (#14884)Timothee Cour2020-07-031-1/+1
|
* {.deprecated: [existsFile: fileExists].} (#14735)Timothee Cour2020-07-021-1/+1
| | | | | | | | | * {.deprecated: [existsFile: fileExists].} * s/existsFile/fileExists/ except under deps * workaround pending #14819 * fix test
* --hint:processing (+friends) is now supported and means ↵Timothee Cour2020-05-082-2/+21
| | | | `--hint:processing:on`, like all other bool flags (#14271)
* [RFC] 'walkDir' now has a new 'checkDir' flag, to mimic behaviour of other ↵Timothee Cour2020-03-201-6/+5
| | | | | languages (#13642) Co-authored-by: narimiran
* [feature] Added os.delEnv; add delEnv support to nimscript too (#11466)Kaushal Modi2019-06-151-0/+5
| | | [feature] Fixes https://github.com/nim-lang/Nim/issues/11452.
* cleanup tests; don't use non-working 'msg' spec fieldAraq2018-11-231-1/+1
|
* Fixes #9671 (#9750)Randy Smith2018-11-191-3/+0
|
* travis: run 'koch testinstall' on OSXAndreas Rumpf2018-09-181-8/+14
|
* Add a few useful os calls to nimscript (#7442)genotrance2018-04-101-0/+47
|
* Fixes 7283 (#7284)cooldome2018-03-051-1/+8
|
* fixes #6327Andreas Rumpf2017-09-051-0/+2
|
* fixes #5228Andreas Rumpf2017-03-182-1/+3
|
* make tests green againAndreas Rumpf2016-07-101-1/+1
|
* Nimscript: added support for 'patchFile'Andreas Rumpf2016-07-093-2/+10
|
* Nimscript supports hint() and warning() procs; refs #3688Andreas Rumpf2016-07-081-0/+3
|
* cleaned up ospaths moduleAraq2015-10-121-0/+3
|
* NimScript: --define works as expectedAraq2015-09-302-0/+4
|
* implements experimental new config system based on NimScriptAraq2015-08-162-0/+21
itter arg@10ksloc.org <unknown> 2006-07-20 12:18:06 +0200 cleaned up code' href='/acidbong/suckless/dwm/commit/tag.c?id=dc5d967ee61046f899b3b49daeb9268c8161844a'>dc5d967 ^
dba2306 ^



901b3ed ^
dba2306 ^








901b3ed ^
dba2306 ^
c53980c ^
dba2306 ^


1173723 ^



dba2306 ^

1173723 ^



dba2306 ^
79cd408 ^
1173723 ^



dba2306 ^
79cd408 ^
1173723 ^



79cd408 ^
c53980c ^
dba2306 ^





4f8b08d ^
dba2306 ^






adaa28a ^
4f8b08d ^
dba2306 ^
4f8b08d ^
adaa28a ^
dba2306 ^


4f8b08d ^













0aaa9a2 ^
4f8b08d ^



dba2306 ^


dc5d967 ^
dba2306 ^







adaa28a ^


bcaf6a7 ^
adaa28a ^

bcaf6a7 ^

adaa28a ^
bcaf6a7 ^
adaa28a ^






bcaf6a7 ^








adaa28a ^
bcaf6a7 ^
901b3ed ^
adaa28a ^
bcaf6a7 ^

adaa28a ^





adaa28a ^










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