about summary refs log tree commit diff stats
path: root/trace.arc.t
Commit message (Collapse)AuthorAgeFilesLines
* 889 - ah, fixed that final errorKartik K. Agaram2015-03-121-0/+32
|
* 888Kartik K. Agaram2015-03-121-20/+0
|
* 887 - first pass of pagination bugs squashedKartik K. Agaram2015-03-111-0/+61
| | | | | | | | This must be the second or third time I've mis-tagged a literal as 'integer'.. I also spotted an error with the cursor bouncing out above the screen area of the trace browser. But I haven't been able to recreate it..
* 886Kartik K. Agaram2015-03-111-0/+42
| | | | Another test, but now the tests run 50% slower (8 vs 12 minutes)
* 885Kartik K. Agaram2015-03-111-1/+1
|
* 884 - expand/collapse now seems page-awareKartik K. Agaram2015-03-111-0/+112
|
* 883Kartik K. Agaram2015-03-111-1/+1
|
* 882Kartik K. Agaram2015-03-101-1/+31
|
* 881Kartik K. Agaram2015-03-101-0/+1
|
* 879 - debug prints shouldn't mess up interactive runsKartik K. Agaram2015-03-091-1/+1
|
* 877 - supporting pages in expandKartik K. Agaram2015-03-091-1/+20
|
* 875Kartik K. Agaram2015-03-091-0/+26
|
* 874Kartik K. Agaram2015-03-091-3/+3
|
* 872Kartik K. Agaram2015-03-091-1/+1
|
* 871Kartik K. Agaram2015-03-081-8/+8
|
* 870 - page-up starting to look solidKartik K. Agaram2015-03-081-0/+70
|
* 869Kartik K. Agaram2015-03-071-0/+278
| | | | | | | The repeated need for bugfixes after every new test isn't very confidence-inducing. On the other hand, I'm starting to get into a cadence where fixes have been easy to make. We'll see. Monotonic progress continues.
* 868Kartik K. Agaram2015-03-071-8/+0
|
* 867Kartik K. Agaram2015-03-061-0/+16
|
* 866 - starting to finally gain confidence in page-upKartik K. Agaram2015-03-061-0/+64
|
* 864Kartik K. Agaram2015-03-061-13/+26
|
* 860Kartik K. Agaram2015-03-041-1/+28
| | | | A new intermediate test might help.
* 859Kartik K. Agaram2015-03-021-0/+163
| | | | | | Intermediate snapshot after 2 days of desultorily debugging this still-failing test. Our divising of the problem into cases just seems wrong right now.
* 856 - stop perturbing traces on new functionsKartik K. Agaram2015-03-011-152/+131
| | | | | Still hacky, but now we can standardize the couple of different workflows we need.
* 855 - page-up fleshed out, but needs a lot more testsKartik K. Agaram2015-03-011-0/+14
|
* 853Kartik K. Agaram2015-02-281-6/+19
|
* 852 - page-down stitches expanded lines properlyKartik K. Agaram2015-02-281-0/+35
|
* 848Kartik K. Agaram2015-02-271-7/+6
|
* 847Kartik K. Agaram2015-02-261-0/+14
|
* 846Kartik K. Agaram2015-02-261-0/+13
|
* 845Kartik K. Agaram2015-02-261-4/+15
|
* 844 - start of support for page navigationKartik K. Agaram2015-02-261-0/+19
| | | | | To keep things simple we won't allow line navigation to span pages. You have to switch pages with dedicated hotkeys.
* 843Kartik K. Agaram2015-02-261-57/+57
|
* 842Kartik K. Agaram2015-02-261-490/+487
|
* 841 - no obvious optimization targetsKartik K. Agaram2015-02-261-487/+490
| | | | | | | | | | | | | | | | | Top functions (ms and #calls): run-for-time-slice 209953 184 m 63880 99478 canonize 63568 307282 setm 44378 67281 sizeof 37786 130452 absolutize 36587 370943 addr 34567 146896 typeof 17395 63661 parse-instr 11670 99243 space 10988 561036 typeinfo 10691 563272 absolutize seems like a target.
* 838Kartik K. Agaram2015-02-261-1/+15
|
* 837 - pagination in the trace browserKartik K. Agaram2015-02-261-0/+81
| | | | Still not finished; we're maybe halfway through the necessary tests.
* 836Kartik K. Agaram2015-02-261-6/+6
|
* 760Kartik K. Agaram2015-02-161-1/+1
| | | | This speeds up the final test but not all together.
* 759 - trace.arc.t 13% fasterKartik K. Agaram2015-02-161-0/+1
| | | | Something wrong with my profiling, though. Numbers aren't adding up.
* 757 - collapse now kinda workingKartik K. Agaram2015-02-161-0/+32
| | | | | Tests are getting slow so quickly that I'm tempted to push forward the rewrite to C.
* 756 - first scenario for collapseKartik K. Agaram2015-02-161-26/+51
|
* 755 - cursor can only lie on top-level linesKartik K. Agaram2015-02-161-0/+86
| | | | | | | | This allows the initial model of a trace to have just one new number: the currently expanded row. We'll make it more flexible later if we feel the need. Still no collapsing lines, though. But we're getting there.
* 754 - traces are part of screen stateKartik K. Agaram2015-02-161-7/+7
|
* 749 - cleaner screen testsKartik K. Agaram2015-02-151-0/+55
|
* 748Kartik K. Agaram2015-02-151-11/+11
|
* 747Kartik K. Agaram2015-02-151-8/+0
| | | | This bugfix is not tested yet, but that's in the works.
* 746 - toggle a set of lines by hitting enter twiceKartik K. Agaram2015-02-121-0/+21
| | | | This just supports it, but we don't actually have collapse yet.
* 745 - first test of expand functionalityKartik K. Agaram2015-02-111-0/+72
| | | | | | | | | | Expanding trace items, of course, doesn't work on anything but the last item. But we've now caught automatic tests up to the state of development. These tests are hugely expensive. Previous .t files run in ~30s. Already the trace browser tests clock in at 2 minutes. And we're just getting started. Time to explore reimplementing the mu VM in C.
* 744 - test cursor movement in trace browserKartik K. Agaram2015-02-111-0/+149
| | | | | | Don't prevent run-code from clobbering existing functions, but warn because it makes traces easier to read if the different sections of a test can be distinguished.