about summary refs log tree commit diff stats
path: root/cpp/.traces/scheduler_starts_at_middle_of_routines
Commit message (Collapse)AuthorAgeFilesLines
* 1246Kartik K. Agaram2015-05-031-2/+2
|
* 1239 - scheduler bugfixKartik K. Agaram2015-05-021-0/+20
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.