about summary refs log tree commit diff stats
path: root/002test.cc
Commit message (Collapse)AuthorAgeFilesLines
* 4255Kartik Agaram2018-06-071-1/+1
|
* 4254Kartik Agaram2018-06-061-3/+5
|
* 4253 - support running just a single C testKartik Agaram2018-06-061-0/+16
| | | | We've had this ability for Mu scenarios forever.
* 4252Kartik Agaram2018-06-061-1/+1
|
* 4162Kartik K. Agaram2017-12-221-25/+0
|
* 3966Kartik K. Agaram2017-07-091-1/+1
|
* 3965 - get rid of the teardown() functionKartik K. Agaram2017-07-091-2/+1
| | | | | | Instead of setup() and teardown() we'll just use a reset() function from now on, which will bring the machine back to a good state before each test or run, and also before exit (to avoid memory leaks).
* 3964 - eliminate one global from the test harnessKartik K. Agaram2017-07-091-6/+6
| | | | | I'm in the process of making it more self-contained so I can use it in another project.
* 3907 - standardize test failure messagesKartik K. Agaram2017-06-151-1/+1
|
* 3749Kartik K. Agaram2017-03-021-1/+1
|
* 3561Kartik K. Agaram2016-10-221-1/+1
|
* 3558Kartik K. Agaram2016-10-221-5/+5
|
* 3557Kartik K. Agaram2016-10-221-1/+1
|
* 3532Kartik K. Agaram2016-10-201-2/+1
| | | | Coalesce all the management of number of failed scenarios.
* 3522Kartik K. Agaram2016-10-191-2/+2
|
* 3433Kartik K. Agaram2016-10-011-1/+1
|
* 3291Kartik K. Agaram2016-09-021-2/+2
| | | | Stop double-counting failing tests in some situations.
* 3273Kartik K. Agaram2016-08-281-1/+2
| | | | | | | | | | | Undo 3272. The trouble with creating a new section for constants is that there's no good place to order it since constants can be initialized using globals as well as vice versa. And I don't want to add constraints disallowing either side. Instead, a new plan: always declare constants in the Globals section using 'extern const' rather than just 'const', since otherwise constants implicitly have internal linkage (http://stackoverflow.com/questions/14894698/why-does-extern-const-int-n-not-work-as-expected)
* 3272Kartik K. Agaram2016-08-281-2/+1
| | | | | | Move global constants into their own section since we seem to be having trouble linking in 'extern const' variables when manually cleaving mu.cc into separate compilation units.
* 3270Kartik K. Agaram2016-08-281-2/+4
| | | | | | | | | | | | Clean up the Globals section so that we can generate extern declarations for all globals out using this command after we carve it out into globals.cc: grep ';' globals.cc |perl -pwe 's/[=(].*/;/' |perl -pwe 's/^[^\/# ]/extern $&/' > globals.h The first perl command strips out initializers. The second prepends 'extern'. This simplistic approach requires each global definition to lie all on one line.
* 3177Kartik K. Agaram2016-08-131-1/+1
| | | | Systematize all the newlines while displaying test progress.
* 3165Kartik K. Agaram2016-08-101-1/+1
|
* 3027Kartik K. Agaram2016-06-021-1/+1
|
* 2773 - switch to 'int'Kartik K. Agaram2016-03-131-2/+2
| | | | This should eradicate the issue of 2771.
* 2700 - fail tests on unexpected errors or warningsKartik K. Agaram2016-02-251-1/+2
|
* 2697Kartik K. Agaram2016-02-241-3/+3
|
* 2095Kartik K. Agaram2015-08-281-1/+1
| | | | | | | | | | | | Finally terminate the experiment of keeping debug prints around. I'm also going to give up on maintaining counts. What we really need is two kinds of tracing: a) For tests, just the domain-specific facts, organized by labels. b) For debugging, just transient dumps to stdout. b) only works if stdout is clean by default. Hmm, I think this means 'stash' should be the transient kind of trace.
* 1965 - don't die on '-' ingredientKartik K. Agaram2015-08-101-1/+13
| | | | Thanks Caleb Couch.
* 1641Kartik K. Agaram2015-06-241-1/+1
| | | | | | Snapshot in switching editor-data.cursor to editor-data.before-cursor. But I have trouble coercing events to touch events, even though using the integer tag 2 for the conversion works.
* 1474 - another warningKartik K. Agaram2015-05-261-0/+1
|
* 1437Kartik K. Agaram2015-05-231-1/+1
|
* 1434 - support all unicode spacesKartik K. Agaram2015-05-231-0/+1
|
* 1391 - avoid unsigned integersKartik K. Agaram2015-05-171-3/+3
|
* 1389Kartik K. Agaram2015-05-161-1/+1
|
* 1388Kartik K. Agaram2015-05-161-0/+1
|
* 1387Kartik K. Agaram2015-05-161-3/+3
|
* 1358 - inform shell of test failureKartik K. Agaram2015-05-121-1/+3
|
* 1357 - temporarily revert floating-point supportKartik K. Agaram2015-05-121-1/+0
|
* 1356 - snapshot #2: floating point supportKartik K. Agaram2015-05-121-0/+1
| | | | | | | | | | | | | | | I added one test to check that divide can return a float, then hacked at the rippling failures across the entire entire codebase until all tests pass. Now I need to look at the changes I made and see if there's a system to them, identify other places that I missed, and figure out the best way to cover all cases. I also need to show real rather than encoded values in the traces, but I can't use value() inside reagent methods because of the name clash with the member variable. So let's take a snapshot before we attempt any refactoring. This was non-trivial to get right. Even if I convince myself that I've gotten it right, I might back this all out if I can't easily *persuade others* that I've gotten it right.
* 1354Kartik K. Agaram2015-05-121-2/+2
|
* 1343Kartik K. Agaram2015-05-111-1/+1
|
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+93
I've tried to update the Readme, but there are at least a couple of issues.
-01-05 19:58:24 +0000 committer James Booth <boothj5@gmail.com> 2013-01-05 19:58:24 +0000 Added libx11 when --with-xscreensaver chosen' href='/danisanti/profani-tty/commit/configure.ac?id=78841f2ea393280066db0f802d825d596422bfe6'>78841f2e ^
dcccfacb ^

d2035496 ^


dcccfacb ^
78841f2e ^
bd1c1394 ^
78841f2e ^
fa89e2aa ^
7e4b1b1d ^
fa89e2aa ^
e504c030 ^
50afe736 ^
fa89e2aa ^











bd1c1394 ^

50afe736 ^
fa89e2aa ^











4d00f788 ^
d2035496 ^

3ceb9b0d ^








2519e450 ^

dcccfacb ^

28f5cdf7 ^
2519e450 ^
d28930ea ^
8e0d8d2a ^
11066f20 ^
2519e450 ^
4cb302ab ^
dcccfacb ^

575b6acd ^
aa6e2284 ^
2c361644 ^
3c062438 ^



2519e450 ^
8014e902 ^
2655d9e8 ^


dcccfacb ^

b5171cb0 ^
dcccfacb ^



3cae0208 ^
3ceb9b0d ^

dcccfacb ^

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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256