about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 1241 - bugfix: comments inside run [ ... ]Kartik K. Agaram2015-05-025-21/+73
|
* 1240 - fix a spuriously passing testKartik K. Agaram2015-05-023-16/+45
| | | | | | Running list of non-obvious special cases in tangle: a) trace checks are sometimes grouped, sometimes not (previous commit) b) comments are sometimes passed through, sometimes not
* 1239 - scheduler bugfixKartik K. Agaram2015-05-024-1/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | In the process, some extra unit tests as well. The final scenario is newly fixed. Between the earlier support for '%' escaping C code inside scenarios, and the previous commit, we now actually have the ability to setup the Routines data structure just so to simulate different situations. One unanticipated but happy consequence of ignoring run(""): I can interleave '+' lines with '-' lines to avoid making any ordering assertions between '+' lines. So the '+' lines here are checked in order: +layer1: a +layer3: c But here they will pass even if present out of order: +layer1: a -layer2: b +layer3: c This might be too confusing. In general, relying on run("") is just a temporary hack. It might well have even worse counter-intuitive effects. At least I'm not seeing any string-escaping issues so far.
* 1238 - stop dying on run("")Kartik K. Agaram2015-05-021-0/+1
| | | | | | | | This makes our scenarios more flexible; we can now accept '+' and '-' trace lines in any order, because the tangler simply inserts a no-op run("") between them, and since we don't '===' clear the trace in between, later checks continue to apply to the trace from the first call to run().
* 1237 - more lenient 'tangle'Kartik K. Agaram2015-05-011-17/+7
| | | | | | | If the scenario has no trace checks, just run it and check for segfaults or whatnot. The function you're running may also flag test errors internally.
* 1236Kartik K. Agaram2015-05-011-2/+1
|
* 1235Kartik K. Agaram2015-05-014-0/+155
|
* 1234 - support for trace checksKartik K. Agaram2015-05-017-17/+212
|
* 1233Kartik K. Agaram2015-05-012-0/+16
|
* 1232Kartik K. Agaram2015-05-011-0/+5
|
* 1231Kartik K. Agaram2015-05-015-0/+254
|
* 1230 - start building scenarios out of 'pseudo recipes'Kartik K. Agaram2015-05-013-0/+116
|
* 1229Kartik K. Agaram2015-05-017-19/+19
|
* 1228Kartik K. Agaram2015-04-301-1/+1
|
* 1227Kartik K. Agaram2015-04-302-0/+1101
|
* 1226 - bugfix in allocating arraysKartik K. Agaram2015-04-3032-2686/+3270
| | | | Also our first test of printing to screen.
* 1225Kartik K. Agaram2015-04-29119-0/+1909
| | | | Finally start tracing the actual instructions as they run.
* 1224Kartik K. Agaram2015-04-291-0/+0
|
* 1223 - more stable traces for parse scenariosKartik K. Agaram2015-04-29149-477/+476
|
* 1222Kartik K. Agaram2015-04-293-5/+28
|
* 1221Kartik K. Agaram2015-04-291-0/+0
|
* 1220 - permit mu comments in tangle scenariosKartik K. Agaram2015-04-293-15/+38
|
* 1219Kartik K. Agaram2015-04-291-47/+25
|
* 1218Kartik K. Agaram2015-04-293-0/+250
| | | | No tests yet for the screen primitives. Need to extend 'scenario' for that.
* 1217 - string literals weren't handling later commentsKartik K. Agaram2015-04-288-27/+65
|
* 1216Kartik K. Agaram2015-04-284-6/+13
|
* 1215 - relative motions for cursorKartik K. Agaram2015-04-282-0/+56
|
* 1214Kartik K. Agaram2015-04-282-0/+274
|
* 1213Kartik K. Agaram2015-04-2866-111/+141
|
* 1212Kartik K. Agaram2015-04-281-1/+1
|
* 1211 - /same-as-ingredient property is now checkedKartik K. Agaram2015-04-282-0/+58
|
* 1210Kartik K. Agaram2015-04-281-1/+1
|
* 1209 - channels painlessly ported overKartik K. Agaram2015-04-2810-0/+3307
| | | | | | | | I've made some tweaks to the arc version. In/out params should be identical; it was ugly that the in param was a pointer but the out wasn't. Still need to check the /same-as-ingredient property.
* 1208Kartik K. Agaram2015-04-281-2/+2
|
* 1207Kartik K. Agaram2015-04-272-1/+1
|
* 1206 - 'wait' state for synchronizing routinesKartik K. Agaram2015-04-2736-58/+155
| | | | I think I have enough now to port channels over.
* 1205Kartik K. Agaram2015-04-271-1/+1
|
* 1204 - more extensible schedulerKartik K. Agaram2015-04-261-16/+49
| | | | | | Instead of creating ad hoc data structures for every new state that routines can be in, track states in one coherent place and provide a well-defined waypoint for state transitions.
* 1203Kartik K. Agaram2015-04-261-2/+0
|
* 1202Kartik K. Agaram2015-04-262-8/+6
|
* 1201Kartik K. Agaram2015-04-261-1/+1
|
* 1200Kartik K. Agaram2015-04-251-2/+2
|
* 1199 - ignore errors in 'make clean'Kartik K. Agaram2015-04-254-4/+4
|
* 1198 - now compiles on mac os; thanks sam putmanKartik K. Agaram2015-04-253-9/+14
| | | | | | | | | | Just toss out that snprintf prototype I'd hackily copied in earlier and avoid using snprintf entirely. Hopefully I got the assertions right :/ Looks like the previous nul-padding was redundant. If you had snprintf it would take care of it.
* 1197Kartik K. Agaram2015-04-253-2/+70
|
* 1196Kartik K. Agaram2015-04-242-1/+1
|
* 1195Kartik K. Agaram2015-04-242-0/+41
|
* 1194Kartik K. Agaram2015-04-24103-1/+107
|
* 1193Kartik K. Agaram2015-04-2416-80/+94
|
* 1192Kartik K. Agaram2015-04-242-19/+18
|