about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 3534Kartik K. Agaram2016-10-201-33/+22
| | | | | | | | | | | | | | | | | | | | Streamline the build process. It's safest to always: a) check if each output is `older_than` the inputs necessary to construct it, and b) update the output only if something changed. However: i) We don't yet have helpers to do b) in all situations, and ii) combining a) and b) can cause `older_than` to spuriously report files being updated. So we'll always run exactly one of a) and b) and err on the side of keeping the output reliable, at the risk of occasionally updating a file unnecessarily and triggering unnecessary work downstream. Cross that bridge when we run into it.
* 3533Kartik K. Agaram2016-10-201-13/+35
| | | | Don't update autogenerated *_list files unless necessary.
* 3532Kartik K. Agaram2016-10-203-8/+1
| | | | Coalesce all the management of number of failed scenarios.
* 3531Kartik K. Agaram2016-10-202-5/+5
| | | | | Be consistent in checking for Scenario_testing_scenario when signalling that a Mu scenario failed.
* 3530Kartik K. Agaram2016-10-203-13/+5
| | | | Coalesce some duplicate signalling that the current test failed.
* 3529Kartik K. Agaram2016-10-202-1/+20
| | | | | Bugfix: refcounts were getting updated for the wrong ingredients in 'call' instructions.
* 3528Kartik K. Agaram2016-10-201-2/+2
|
* 3527Kartik K. Agaram2016-10-202-9/+16
|
* 3526Kartik K. Agaram2016-10-202-6/+6
|
* 3525Kartik K. Agaram2016-10-202-6/+5
|
* 3524Kartik K. Agaram2016-10-2058-565/+769
|
* 3523 - http client now workingKartik K. Agaram2016-10-203-12/+163
|
* 3522Kartik K. Agaram2016-10-1952-331/+331
|
* 3521Kartik K. Agaram2016-10-181-2/+15
|
* 3520Kartik K. Agaram2016-10-187-10/+0
| | | | | | | | Drop a few debug prints. Hopefully now we need never duplicate trace statements and can instead just dump them to screen. I'll soon need the ability to selectively dump traces for a specific label.
* 3519 - reading lots of data from a socketKartik K. Agaram2016-10-182-5/+17
| | | | | | In the process I've also altered the API of $read-from-socket to return a boolean (eof?) rather than the number of bytes read (which is implicit in the length of the returned array).
* 3518Kartik K. Agaram2016-10-181-2/+0
| | | | The bugfix of commit 3517 allows us to drop this redundant condition.
* 3517 - don't block routines in 'switch'Kartik K. Agaram2016-10-181-37/+21
| | | | | The notion of blocking is just to enable certain kinds of tests. We should never be using it in production code.
* 3516 - print the trace as it is generatedKartik K. Agaram2016-10-181-1/+3
| | | | | | I had this early on. Why did I delete it? Was it because I was only flushing the current trace when I started on the next one? We don't have that problem anymore..
* 3515Kartik K. Agaram2016-10-181-7/+8
| | | | Bugfix: allow 'new' to be passed in type abbreviations.
* 3514Kartik K. Agaram2016-10-182-6/+20
| | | | | | | | Let's constrain 'push' on lists to always modify its ingredient. That makes some possibilities more verbose, such as lists that share a common tail. But may be worthwhile to get better errors in the common use-case.
* 3513Kartik K. Agaram2016-10-171-0/+9
|
* 3512Kartik K. Agaram2016-10-171-1/+1
|
* 3511Kartik K. Agaram2016-10-161-3/+3
|
* 3510Kartik K. Agaram2016-10-162-37/+37
|
* 3509Kartik K. Agaram2016-10-161-2/+3
|
* 3508Kartik K. Agaram2016-10-161-2/+2
|
* 3507Kartik K. Agaram2016-10-163-10/+10
|
* 3506Kartik K. Agaram2016-10-161-0/+1
|
* 3505Kartik K. Agaram2016-10-152-8/+6
|
* 3504Kartik K. Agaram2016-10-153-93/+93
|
* 3503Kartik K. Agaram2016-10-153-11/+11
| | | | | Undo commit 3500; turns out we need the duplicate scenario names for good test failure messages.
* 3502Kartik K. Agaram2016-10-153-10/+14
| | | | | | | | Better implementation of commit 3445: not requiring types for special variables in scenarios. It turned out that it wasn't working anytime we needed to call 'get' on a special variable inside a scenario. After moving that work to an earlier transform we can now use 'filesystem' without a type inside scenarios.
* 3501Kartik K. Agaram2016-10-151-2/+2
|
* 3500Kartik K. Agaram2016-10-153-11/+11
|
* 3499Kartik K. Agaram2016-10-151-2/+1
|
* 3498Kartik K. Agaram2016-10-141-1/+1
|
* 3497Kartik K. Agaram2016-10-132-46/+48
|
* 3496Kartik K. Agaram2016-10-111-2/+2
|
* 3495Kartik K. Agaram2016-10-111-1/+1
|
* 3494Kartik K. Agaram2016-10-111-3/+1
|
* 3493Kartik K. Agaram2016-10-101-1/+1
|
* 3492Kartik K. Agaram2016-10-101-2/+2
|
* 3491Kartik K. Agaram2016-10-0915-175/+347
| | | | | Update the html, proving that commit 3490 worked. The only changes are from other recent commits.
* 3490Kartik K. Agaram2016-10-0917-303/+310
| | | | | | | | | | | | | | | Redo commit 3457. Basically there were 3 unicode characters we changed back then: solid horizontal line: 9473 -> 9472 fuzzy horizontal line: 9480 -> 9548 fuzzy vertical line: 9482 -> 9550 The solid horizontal line has no issues, so we just redo it here. For the other two, we'll perform the substitution only when rendering html. That gives us the best of both worlds: the scenario screens render right in html, and alt-tabbing continues to be snappy when running the edit/ app.
* 3489Kartik K. Agaram2016-10-0822-1015/+1015
| | | | | | | | | | Revert commit 3457, where I switched the unicode characters used in the edit/ app to something that doesn't render double-wide in html. It turns out that the new unicode characters made iTerm2 sluggish in alt-tabbing between windows. (Commit 3488 only fixed the screen-clearing issue.) I haven't reverted the html files. I'm going to redo commit 3457 next so the html files continue to render like they do now.
* 3488 -Kartik K. Agaram2016-10-082-2/+2
| | | | | | I'd messed up termbox in commit 3443; it was weird how it failed though. The terminal got really sluggish to switch between windows when the edit/ app was running. And it stopped clearing the screen properly.
* 3487Kartik K. Agaram2016-10-081-1/+1
|
* 3486Kartik K. Agaram2016-10-081-3/+3
|
* 3485Kartik K. Agaram2016-10-081-2/+2
|