trepanning 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +289 -443
- data/NEWS +3 -0
- data/app/options.rb +1 -1
- data/app/run.rb +1 -2
- data/interface/script.rb +2 -2
- data/lib/trepanning.rb +1 -1
- data/processor/breakpoint.rb +5 -6
- data/processor/command/base/subcmd.rb +7 -5
- data/processor/command/base/submgr.rb +2 -2
- data/processor/command/disassemble.rb +10 -11
- data/processor/command/info_subcmd/file.rb +2 -2
- data/processor/command/irb.rb +1 -1
- data/processor/command/kill.rb +2 -2
- data/processor/command/list.rb +4 -4
- data/processor/command/nocache.rb +1 -1
- data/processor/command/set_subcmd/substitute_subcmd/eval.rb +1 -1
- data/processor/main.rb +1 -1
- data/processor/running.rb +0 -1
- data/test/data/enable.cmd +12 -0
- data/test/data/enable.right +36 -0
- data/test/data/fname-with-blank.cmd +6 -0
- data/test/data/fname-with-blank.right +1 -0
- data/test/data/quit.cmd +5 -0
- data/test/data/quit.right +0 -0
- data/test/example/null.rb +1 -0
- data/test/integration/helper.rb +45 -26
- data/test/unit/test-app-file.rb +1 -0
- metadata +10 -7
- data/data/custom_require.rb +0 -44
- data/data/irbrc +0 -41
- data/data/prelude.rb +0 -38
data/ChangeLog
CHANGED
@@ -1,7 +1,75 @@
|
|
1
|
+
2010-12-20 rocky <rockyb@rubyforge.org>
|
2
|
+
|
3
|
+
* processor/breakpoint.rb: Fix bug introduced in recent
|
4
|
+
shadow-variable warning elimination.
|
5
|
+
|
6
|
+
2010-12-19 rocky <rockyb@rubyforge.org>
|
7
|
+
|
8
|
+
* processor/breakpoint.rb, processor/command/base/subcmd.rb,
|
9
|
+
processor/command/disassemble.rb, processor/command/kill.rb,
|
10
|
+
processor/command/list.rb: Sync with rbx-trepanning.
|
11
|
+
|
12
|
+
2010-12-18 rocky <rockyb@rubyforge.org>
|
13
|
+
|
14
|
+
* app/run.rb, processor/command/info_subcmd/file.rb,
|
15
|
+
processor/command/nocache.rb, processor/running.rb: Remove more
|
16
|
+
warnings
|
17
|
+
|
18
|
+
2010-12-18 rocky <rockyb@rubyforge.org>
|
19
|
+
|
20
|
+
* processor/breakpoint.rb: Remove a couple more warnings
|
21
|
+
|
22
|
+
2010-12-18 rocky <rockyb@rubyforge.org>
|
23
|
+
|
24
|
+
* processor/command/base/submgr.rb,
|
25
|
+
processor/command/disassemble.rb,
|
26
|
+
processor/command/info_subcmd/file.rb, processor/command/irb.rb,
|
27
|
+
processor/command/kill.rb, processor/command/list.rb,
|
28
|
+
processor/command/set_subcmd/substitute_subcmd/eval.rb: Reduce
|
29
|
+
number of warnings
|
30
|
+
|
31
|
+
2010-12-18 rocky <rockyb@rubyforge.org>
|
32
|
+
|
33
|
+
* processor/main.rb: Make sure @reload_on_change is initialized
|
34
|
+
|
35
|
+
2010-12-15 rocky <rockyb@rubyforge.org>
|
36
|
+
|
37
|
+
* test/integration/helper.rb: Check $?.exitstatus after running
|
38
|
+
debugger.
|
39
|
+
|
40
|
+
2010-12-15 rocky <rockyb@rubyforge.org>
|
41
|
+
|
42
|
+
* .gemspec: Wasn't packaging test/data/ properly.
|
43
|
+
|
44
|
+
2010-12-15 rocky <rockyb@rubyforge.org>
|
45
|
+
|
46
|
+
* interface/script.rb, test/data/quit.cmd, test/example/null.rb:
|
47
|
+
quit.cmd: use no-confirmation form of quit. null.rb: need a
|
48
|
+
statement or we don't even stop initially. script.rb: sync with
|
49
|
+
rbx-trepanning: allow input to be passed in.
|
50
|
+
|
51
|
+
2010-12-15 rocky <rockyb@rubyforge.org>
|
52
|
+
|
53
|
+
* : I hate conflicted merges
|
54
|
+
|
55
|
+
2010-12-10 rocky <rockyb@rubyforge.org>
|
56
|
+
|
57
|
+
* .gemspec, ChangeLog, NEWS, lib/trepanning.rb,
|
58
|
+
processor/command/backtrace.rb: Messed up on 0.7 release. Let's try
|
59
|
+
for 0.8.
|
60
|
+
|
1
61
|
2010-12-10 rocky <rockyb@rubyforge.org>
|
2
62
|
|
3
63
|
* .gemspec, lib/trepanning.rb: Giant Madagascar Day release
|
4
64
|
|
65
|
+
2010-12-06 rocky <rockyb@rubyforge.org>
|
66
|
+
|
67
|
+
* .gemspec: Need rb-trace ~> 0.3 not => 0.3.
|
68
|
+
|
69
|
+
2010-12-06 rocky <rockyb@rubyforge.org>
|
70
|
+
|
71
|
+
* .gemspec: Need rb-trace 0.3 or better.
|
72
|
+
|
5
73
|
2010-12-05 rocky <rockyb@rubyforge.org>
|
6
74
|
|
7
75
|
* processor/location.rb, test/functional/fn_helper.rb: Add IP in
|
@@ -86,28 +154,8 @@
|
|
86
154
|
|
87
155
|
2010-11-28 rocky <rockyb@rubyforge.org>
|
88
156
|
|
89
|
-
|
90
|
-
|
91
|
-
2010-11-28 rocky <rockyb@rubyforge.org>
|
92
|
-
|
93
|
-
* Rakefile, processor/command/info_subcmd/registers_subcmd/dfp.rb,
|
94
|
-
processor/command/info_subcmd/registers_subcmd/lfp.rb,
|
95
|
-
processor/command/info_subcmd/registers_subcmd/sp.rb,
|
96
|
-
processor/command/list.rb,
|
97
|
-
processor/command/set_subcmd/auto_subcmd/eval.rb,
|
98
|
-
processor/command/set_subcmd/auto_subcmd/irb.rb,
|
99
|
-
processor/command/set_subcmd/auto_subcmd/list.rb,
|
100
|
-
processor/command/set_subcmd/debug_subcmd/dbgr.rb,
|
101
|
-
processor/command/set_subcmd/debug_subcmd/except.rb,
|
102
|
-
processor/command/set_subcmd/debug_subcmd/macro.rb,
|
103
|
-
processor/command/set_subcmd/debug_subcmd/skip.rb,
|
104
|
-
processor/command/set_subcmd/debug_subcmd/stack.rb,
|
105
|
-
processor/command/set_subcmd/substitute_subcmd/string.rb,
|
106
|
-
processor/command/set_subcmd/trace_subcmd/print.rb,
|
107
|
-
processor/command/show_subcmd/auto_subcmd/eval.rb,
|
108
|
-
processor/command/show_subcmd/auto_subcmd/irb.rb,
|
109
|
-
processor/command/show_subcmd/auto_subcmd/list.rb,
|
110
|
-
processor/mock.rb: Start to DRY standalone-code.
|
157
|
+
* : commit 55fbdeb97333f624b02b58a9bf289a0d2f4bb981 Author: rocky
|
158
|
+
<rockyb@rubyforge.org> Date: Sun Nov 28 03:07:35 2010 -0500
|
111
159
|
|
112
160
|
2010-11-26 rocky <rockyb@rubyforge.org>
|
113
161
|
|
@@ -121,16 +169,8 @@
|
|
121
169
|
|
122
170
|
2010-11-13 rocky <rockyb@rubyforge.org>
|
123
171
|
|
124
|
-
|
125
|
-
|
126
|
-
2010-11-13 rocky <rockyb@rubyforge.org>
|
127
|
-
|
128
|
-
* io/base_io.rb, io/null_output.rb, processor/command/continue.rb,
|
129
|
-
processor/command/set_subcmd/auto.rb, processor/command/source.rb,
|
130
|
-
processor/default.rb, processor/frame.rb, processor/location.rb,
|
131
|
-
processor/validate.rb: "source -q" silences all prompt and debugger
|
132
|
-
messages now. Fix bugs in output.eof auto.rb: remove
|
133
|
-
no-longer-needed assignment
|
172
|
+
* : commit b1a68214f2586ae7de9d9d48bd241a6aef1feedb Author: rocky
|
173
|
+
<rockyb@rubyforge.org> Date: Sat Nov 13 05:38:33 2010 -0500
|
134
174
|
|
135
175
|
2010-11-12 rocky <rockyb@rubyforge.org>
|
136
176
|
|
@@ -142,8 +182,8 @@
|
|
142
182
|
processor/command/restart.rb,
|
143
183
|
processor/command/show_subcmd/args.rb, processor/location.rb,
|
144
184
|
test/unit/test-app-run.rb: Greatly simplify restart code and is more
|
145
|
-
reliable -- via new patch to 1.9.2.
|
146
|
-
suggesting and doing in Rubinius.
|
185
|
+
reliable -- via new patch to 1.9.2. Thanks to Evan Phoenix for
|
186
|
+
suggesting and doing in Rubinius. .gemspec: need to make sure we
|
147
187
|
have a later Ruby 1.9.2 patch
|
148
188
|
|
149
189
|
2010-11-09 rocky <rockyb@rubyforge.org>
|
@@ -153,18 +193,12 @@
|
|
153
193
|
2010-11-09 rocky <rockyb@rubyforge.org>
|
154
194
|
|
155
195
|
* processor/command/finish.rb, processor/command/list.rb,
|
156
|
-
processor/frame.rb: Fix "list . NUM".
|
196
|
+
processor/frame.rb: Fix "list . NUM". finish.rb: fix doc string
|
157
197
|
|
158
198
|
2010-11-08 rocky <rockyb@rubyforge.org>
|
159
199
|
|
160
|
-
|
161
|
-
|
162
|
-
2010-11-08 rocky <rockyb@rubyforge.org>
|
163
|
-
|
164
|
-
* test/functional/fn_helper.rb, test/functional/test-break.rb,
|
165
|
-
test/functional/test-condition.rb, test/functional/test-delete.rb:
|
166
|
-
list.rb: handle "list . count" and "list start end". Sync with
|
167
|
-
rbx-trepanning.
|
200
|
+
* : commit 2926ca92715f2034ef9b560f784b4ab97ddfbea4 Author: rocky
|
201
|
+
<rockyb@rubyforge.org> Date: Mon Nov 8 03:38:37 2010 -0500
|
168
202
|
|
169
203
|
2010-11-04 rocky <rockyb@rubyforge.org>
|
170
204
|
|
@@ -173,7 +207,6 @@
|
|
173
207
|
processor/command/show_subcmd/hidelevel.rb, processor/default.rb:
|
174
208
|
Replace "set/show debugstack" with more general "set/show hidestack"
|
175
209
|
|
176
|
-
|
177
210
|
2010-10-27 rocky <rockyb@rubyforge.org>
|
178
211
|
|
179
212
|
* NEWS, lib/trepanning.rb: Some small omissions.
|
@@ -193,11 +226,8 @@
|
|
193
226
|
|
194
227
|
2010-10-21 rocky <rockyb@rubyforge.org>
|
195
228
|
|
196
|
-
|
197
|
-
|
198
|
-
2010-10-20 rocky <rockyb@rubyforge.org>
|
199
|
-
|
200
|
-
* processor/validate.rb: Comment typo.
|
229
|
+
* : commit 956df3be0f3f3a6c77671e6be49ef4397da12ffb Author: rocky
|
230
|
+
<rockyb@rubyforge.org> Date: Wed Oct 20 20:32:49 2010 -0400
|
201
231
|
|
202
232
|
2010-10-20 rocky <rockyb@rubyforge.org>
|
203
233
|
|
@@ -214,23 +244,8 @@
|
|
214
244
|
|
215
245
|
2010-10-19 rocky <rockyb@rubyforge.org>
|
216
246
|
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
2010-10-19 rocky <rockyb@rubyforge.org>
|
221
|
-
|
222
|
-
* .gitignore, app/frame.rb, lib/trepanning.rb,
|
223
|
-
processor/command/alias.rb, processor/command/backtrace.rb,
|
224
|
-
processor/command/break.rb, processor/command/continue.rb,
|
225
|
-
processor/command/directory.rb, processor/command/exit.rb,
|
226
|
-
processor/command/finish.rb, processor/command/help.rb,
|
227
|
-
processor/command/irb.rb, processor/command/kill.rb,
|
228
|
-
processor/command/next.rb, processor/command/nocache.rb,
|
229
|
-
processor/command/quit.rb, processor/command/raise.rb,
|
230
|
-
processor/command/restart.rb, processor/command/save.rb,
|
231
|
-
processor/frame.rb, processor/main.rb,
|
232
|
-
test/functional/test-fn_helper.rb: Add test of test-fn_helper.rb
|
233
|
-
Appease the RDoc God.
|
247
|
+
* : commit f7f10e99c12dfef4148b9c34297f6b2909407527 Author: rocky
|
248
|
+
<rockyb@rubyforge.org> Date: Tue Oct 19 12:17:19 2010 -0400
|
234
249
|
|
235
250
|
2010-10-18 rocky <rockyb@rubyforge.org>
|
236
251
|
|
@@ -276,16 +291,8 @@
|
|
276
291
|
|
277
292
|
2010-10-16 rocky <rockyb@rubyforge.org>
|
278
293
|
|
279
|
-
|
280
|
-
|
281
|
-
2010-10-16 rocky <rockyb@rubyforge.org>
|
282
|
-
|
283
|
-
* processor/command/backtrace.rb, processor/command/base/cmd.rb,
|
284
|
-
processor/command/break.rb, processor/command/condition.rb,
|
285
|
-
processor/command/continue.rb, processor/command/debug.rb,
|
286
|
-
processor/command/finish.rb, processor/command/irb.rb,
|
287
|
-
processor/command/source.rb: Add Trepan::Command#name and dry code
|
288
|
-
with it.
|
294
|
+
* : commit 8d11c5bd1a588223a84a490687c214f42bcb40c8 Author: rocky
|
295
|
+
<rockyb@rubyforge.org> Date: Sat Oct 16 10:18:06 2010 -0400
|
289
296
|
|
290
297
|
2010-10-14 rocky <rockyb@rubyforge.org>
|
291
298
|
|
@@ -294,25 +301,13 @@
|
|
294
301
|
|
295
302
|
2010-10-14 rocky <rockyb@rubyforge.org>
|
296
303
|
|
297
|
-
|
298
|
-
|
299
|
-
2010-10-14 rocky <rockyb@rubyforge.org>
|
300
|
-
|
301
|
-
* processor/command/pr.rb, processor/command/print.rb,
|
302
|
-
processor/running.rb, test/functional/test-raise.rb,
|
303
|
-
test/functional/test-return.rb, test/unit/test-proc-main.rb:
|
304
|
-
debugger "print" (print truncating long output) renamed to "pr"
|
305
|
-
since p and print are both Ruby commands. running.rb: Typo |= -> ||=
|
306
|
-
|
304
|
+
* : commit b75fbef2155a56d7c5db6cf92a069b037f5ebce6 Author: rocky
|
305
|
+
<rockyb@rubyforge.org> Date: Thu Oct 14 23:46:16 2010 -0400
|
307
306
|
|
308
307
|
2010-10-13 rocky <rockyb@rubyforge.org>
|
309
308
|
|
310
|
-
|
311
|
-
|
312
|
-
2010-10-13 rocky <rockyb@rubyforge.org>
|
313
|
-
|
314
|
-
* app/irb.rb, data/irbrc, processor/command/irb.rb: Keep in sync
|
315
|
-
with rbx-trepanning.
|
309
|
+
* : commit f82c642a2f927aae66dc395284bdfe844dac43f5 Author: rocky
|
310
|
+
<rockyb@rubyforge.org> Date: Wed Oct 13 10:52:05 2010 -0400
|
316
311
|
|
317
312
|
2010-10-13 rocky <rockyb@rubyforge.org>
|
318
313
|
|
@@ -339,23 +334,13 @@
|
|
339
334
|
|
340
335
|
2010-10-12 rocky <rockyb@rubyforge.org>
|
341
336
|
|
342
|
-
|
343
|
-
|
344
|
-
2010-10-12 rocky <rockyb@rubyforge.org>
|
345
|
-
|
346
|
-
* processor/frame.rb, test/unit/test-proc-frame.rb: A little cleaner
|
347
|
-
I think due to sync with rbx-trepanning.
|
337
|
+
* : commit d0414dd55cfcf924fe5b464e060682c811800bae Author: rocky
|
338
|
+
<rockyb@rubyforge.org> Date: Tue Oct 12 18:11:00 2010 -0400
|
348
339
|
|
349
340
|
2010-10-11 rocky <rockyb@rubyforge.org>
|
350
341
|
|
351
|
-
|
352
|
-
|
353
|
-
2010-10-10 rocky <rockyb@rubyforge.org>
|
354
|
-
|
355
|
-
* .gemspec, ChangeLog, NEWS, Rakefile, lib/trepanning.rb: Rakefile:
|
356
|
-
remove weird self-modifying double loop lib/trepanning.rb: now in
|
357
|
-
0.0.5.git .gemspec: Add add for rbx-trepanning NEWS: forgot to
|
358
|
-
commit from before.
|
342
|
+
* : commit 50c3333d93dbeb70c900417b778d628395c9cc95 Author: rocky
|
343
|
+
<rockyb@rubyforge.org> Date: Sun Oct 10 22:11:52 2010 -0400
|
359
344
|
|
360
345
|
2010-10-08 rocky <rockyb@rubyforge.org>
|
361
346
|
|
@@ -365,7 +350,6 @@
|
|
365
350
|
|
366
351
|
* data/custom_require.rb, processor/main.rb: Remap custom_require.rb
|
367
352
|
|
368
|
-
|
369
353
|
2010-10-08 rocky <rockyb@rubyforge.org>
|
370
354
|
|
371
355
|
* Makefile: Fix up boilerplate Makefile
|
@@ -403,28 +387,17 @@
|
|
403
387
|
|
404
388
|
2010-10-05 rocky <rockyb@rubyforge.org>
|
405
389
|
|
406
|
-
|
407
|
-
|
408
|
-
2010-10-05 rocky <rockyb@rubyforge.org>
|
409
|
-
|
410
|
-
* app/breakpoint.rb, app/brkptmgr.rb,
|
411
|
-
test/functional/test-break.rb, test/functional/test-condition.rb,
|
412
|
-
test/functional/test-delete.rb, test/unit/test-app-brkpt.rb,
|
413
|
-
test/unit/test-cmd-break.rb: app/breakpoint.rb: respect passed
|
414
|
-
breakpoint :id option. app/brkptmgr.rb: remove globalness of setting
|
415
|
-
breakpoint ids test/* adjust as is now appropriate.
|
390
|
+
* : commit 3d425bf22f435f5498578059d59e800217ff223f Author: rocky
|
391
|
+
<rockyb@rubyforge.org> Date: Tue Oct 5 05:46:56 2010 -0400
|
416
392
|
|
417
393
|
2010-10-04 rocky <rockyb@rubyforge.org>
|
418
394
|
|
419
395
|
* processor/breakpoint.rb, processor/eval.rb,
|
420
396
|
processor/validate.rb, test/unit/test-cmd-break.rb: We now scan
|
421
|
-
parent instruction sequences to find breakpoint line numbers.
|
422
|
-
this requires an updated rb-threadframe from git. For example,
|
423
|
-
|
424
|
-
|
425
|
-
"debugger_is_here", the xx line is not part of that instruction
|
426
|
-
sequence, but can be found by searching its parent instruction
|
427
|
-
sequence.
|
397
|
+
parent instruction sequences to find breakpoint line numbers. Note:
|
398
|
+
this requires an updated rb-threadframe from git. For example, suppose the code is: xx = 'break here' 1.times do debugger_is_here end If you are at the line of "debugger_is_here", the xx line is not
|
399
|
+
part of that instruction sequence, but can be found by searching its
|
400
|
+
parent instruction sequence.
|
428
401
|
|
429
402
|
2010-10-04 rocky <rockyb@rubyforge.org>
|
430
403
|
|
@@ -454,13 +427,13 @@
|
|
454
427
|
|
455
428
|
* app/mock.rb, processor/default.rb, processor/location.rb,
|
456
429
|
processor/validate.rb: processor/*.rb: Add gdb-like "directory"
|
457
|
-
command. Code was in rbx-trepanning.
|
430
|
+
command. Code was in rbx-trepanning. app/mock.rb: Need to be more
|
458
431
|
realistic now.
|
459
432
|
|
460
433
|
2010-09-30 rocky <rockyb@rubyforge.org>
|
461
434
|
|
462
435
|
* processor/validate.rb, test/unit/test-cmd-break.rb: Reinstate more
|
463
|
-
flexible file/line breakpoint parsing.
|
436
|
+
flexible file/line breakpoint parsing. Be more lenient about file
|
464
437
|
name matching, i.e. use basenames.
|
465
438
|
|
466
439
|
2010-09-29 rocky <rockyb@rubyforge.org>
|
@@ -470,19 +443,13 @@
|
|
470
443
|
|
471
444
|
2010-09-28 rocky <rockyb@rubyforge.org>
|
472
445
|
|
473
|
-
|
446
|
+
* : commit 978ae3024f52c581a3d71c5e334b4226c7bb24ad Author: rocky
|
447
|
+
<rockyb@rubyforge.org> Date: Tue Sep 28 21:35:55 2010 -0400
|
474
448
|
|
475
449
|
2010-09-28 rocky <rockyb@rubyforge.org>
|
476
450
|
|
477
|
-
*
|
478
|
-
|
479
|
-
2010-09-28 rocky <rockyb@rubyforge.org>
|
480
|
-
|
481
|
-
Merge branch 'master' of github.com:rocky/rb-trepanning
|
482
|
-
|
483
|
-
2010-09-28 rocky <rockyb@rubyforge.org>
|
484
|
-
|
485
|
-
* processor/command/source.rb, processor/eval.rb: Small tweaks
|
451
|
+
* : commit cbd98bce731425d5bffef4094ac1ffa5152eaf6b Author: rocky
|
452
|
+
<rockyb@rubyforge.org> Date: Tue Sep 28 21:30:16 2010 -0400
|
486
453
|
|
487
454
|
2010-09-27 rocky <rockyb@rubyforge.org>
|
488
455
|
|
@@ -559,7 +526,6 @@
|
|
559
526
|
* Rakefile, app/options.rb, bin/trepan, lib/trepanning.rb: Small
|
560
527
|
changes and try to keep in better compatibility/sync with rubinius.
|
561
528
|
|
562
|
-
|
563
529
|
2010-09-25 rocky <rockyb@rubyforge.org>
|
564
530
|
|
565
531
|
* processor/command/show_subcmd/args.rb: Beef up demo code for show
|
@@ -568,19 +534,8 @@
|
|
568
534
|
|
569
535
|
2010-09-25 rocky <rockyb@rubyforge.org>
|
570
536
|
|
571
|
-
|
572
|
-
|
573
|
-
2010-09-25 rocky <rockyb@rubyforge.org>
|
574
|
-
|
575
|
-
* app/run.rb, processor/command/exit.rb,
|
576
|
-
processor/command/info_subcmd/program.rb, processor/command/ps.rb,
|
577
|
-
processor/command/show_subcmd/max_subcmd/stack.rb,
|
578
|
-
processor/command/show_subcmd/max_subcmd/string.rb,
|
579
|
-
processor/command/show_subcmd/max_subcmd/width.rb,
|
580
|
-
processor/main.rb, test/unit/test-app-run.rb: app/run.rb: add demo
|
581
|
-
and unit test processor/command/exit.rb: allow xxx! and make
|
582
|
-
compatible with 1.8 Other small cleanups and synchronization with
|
583
|
-
rbx-trepanning.
|
537
|
+
* : commit e2e8c3fb71b7de8e62c777e33294ce2ecb710c86 Author: rocky
|
538
|
+
<rockyb@rubyforge.org> Date: Sat Sep 25 11:22:23 2010 -0400
|
584
539
|
|
585
540
|
2010-09-24 rocky <rockyb@rubyforge.org>
|
586
541
|
|
@@ -816,14 +771,13 @@
|
|
816
771
|
test/unit/test-proc-load_cmds.rb, test/unit/test-proc-main.rb,
|
817
772
|
test/unit/test-proc-validate.rb, test/unit/test-subcmd-help.rb:
|
818
773
|
Debugger -> Trepan. bin/rbdbgr -> bin/trepan. Package name is now
|
819
|
-
trepan. Hmm. may change the package name soon.
|
774
|
+
trepan. Hmm. may change the package name soon. There are still many
|
820
775
|
other reminants of rbdbgr. All in due time...
|
821
776
|
|
822
777
|
2010-09-21 rocky <rockyb@rubyforge.org>
|
823
778
|
|
824
779
|
* Makefile, app/Makefile, lib/Makefile: Makefiles were a little off.
|
825
780
|
|
826
|
-
|
827
781
|
2010-09-21 rocky <rockyb@rubyforge.org>
|
828
782
|
|
829
783
|
* .gemspec, ChangeLog, Rakefile, lib/rbdbgr.rb: Add .gemspec and
|
@@ -1021,16 +975,12 @@
|
|
1021
975
|
processor/command/macro.rb: sp.rb: run() Make use fo new
|
1022
976
|
Threadframe#sp_size. SIZE lists number of entries in stack; we now
|
1023
977
|
check for accessing outside of the range, No args lists all stack
|
1024
|
-
entries.
|
1025
|
-
|
1026
|
-
2010-08-20 R. Bernstein <rocky@gnu.org>
|
1027
|
-
|
1028
|
-
Merge branch 'master' of github.com:rocky/rbdbgr
|
978
|
+
entries. macro.rb: Tidy "macro defined" message.
|
1029
979
|
|
1030
980
|
2010-08-20 R. Bernstein <rocky@gnu.org>
|
1031
981
|
|
1032
|
-
*
|
1033
|
-
|
982
|
+
* : commit 1aa24b2b7d105f4491cf3ebd8c8bc57f0f29246c Author: R.
|
983
|
+
Bernstein <rocky@gnu.org> Date: Fri Aug 20 19:58:09 2010 -0400
|
1034
984
|
|
1035
985
|
2010-08-11 rocky <rockyb@rubyforge.org>
|
1036
986
|
|
@@ -1041,7 +991,7 @@
|
|
1041
991
|
|
1042
992
|
* app/display.rb, processor/command/display.rb:
|
1043
993
|
processor/command/display.rb: show initial value when setting
|
1044
|
-
display - gdb does.
|
994
|
+
display - gdb does. app/display.rb: DRY code a little.
|
1045
995
|
|
1046
996
|
2010-08-11 R. Bernstein <rocky@gnu.org>
|
1047
997
|
|
@@ -1062,22 +1012,13 @@
|
|
1062
1012
|
|
1063
1013
|
2010-07-06 rocky <rockyb@rubyforge.org>
|
1064
1014
|
|
1065
|
-
|
1066
|
-
|
1067
|
-
2010-07-06 rocky <rockyb@rubyforge.org>
|
1068
|
-
|
1069
|
-
* processor/command/frame.rb: 'frame' command help tweak.
|
1015
|
+
* : commit 2757e57310a7e236962a660e7f07d8ac5f995c62 Author: rocky
|
1016
|
+
<rockyb@rubyforge.org> Date: Tue Jul 6 06:17:43 2010 -0400
|
1070
1017
|
|
1071
1018
|
2010-06-20 rocky <rockyb@rubyforge.org>
|
1072
1019
|
|
1073
|
-
|
1074
|
-
|
1075
|
-
2010-06-20 rocky <rockyb@rubyforge.org>
|
1076
|
-
|
1077
|
-
* app/disassemble.rb,
|
1078
|
-
processor/command/set_subcmd/substitute_subcmd/string.rb,
|
1079
|
-
test/unit/test-app-disassemble.rb: string.rb: help doc correction
|
1080
|
-
*disasemble.rb: One more unit test. Tidy demo output.
|
1020
|
+
* : commit 6858909c9938841e1f579a554e5ee72b842acf22 Author: rocky
|
1021
|
+
<rockyb@rubyforge.org> Date: Sun Jun 20 04:50:53 2010 +0200
|
1081
1022
|
|
1082
1023
|
2010-06-10 rocky <rockyb@rubyforge.org>
|
1083
1024
|
|
@@ -1130,7 +1071,7 @@
|
|
1130
1071
|
|
1131
1072
|
* app/condition.rb, processor/command/condition.rb,
|
1132
1073
|
processor/command/step.rb, processor/frame.rb,
|
1133
|
-
processor/validate.rb: Work on thread support.
|
1074
|
+
processor/validate.rb: Work on thread support. validate.rb: don't
|
1134
1075
|
show the frames of the event processor of non-current threads
|
1135
1076
|
step.rb add "step thread" to step within the thread.
|
1136
1077
|
app/condition.rb: Rbdbgr -> Debugger::Conditon module.
|
@@ -1150,7 +1091,6 @@
|
|
1150
1091
|
processor/command/info_subcmd/thread.rb, processor/frame.rb,
|
1151
1092
|
processor/validate.rb: Work on showing and switching thread frames.
|
1152
1093
|
|
1153
|
-
|
1154
1094
|
2010-05-15 rocky <rockyb@rubyforge.org>
|
1155
1095
|
|
1156
1096
|
* processor/command/debug.rb: No need to fiddle with prompt in
|
@@ -1158,12 +1098,8 @@
|
|
1158
1098
|
|
1159
1099
|
2010-05-15 rocky <rockyb@rubyforge.org>
|
1160
1100
|
|
1161
|
-
|
1162
|
-
|
1163
|
-
2010-05-15 rocky <rockyb@rubyforge.org>
|
1164
|
-
|
1165
|
-
* processor/command/show_subcmd/trace_subcmd/buffer.rb: Setting name
|
1166
|
-
was renamed a while ago. Didn't catch this then.
|
1101
|
+
* : commit da2a0b67fbbc9973b62c98b21a7888b23afc802d Author: rocky
|
1102
|
+
<rockyb@rubyforge.org> Date: Sat May 15 21:44:37 2010 -0400
|
1167
1103
|
|
1168
1104
|
2010-05-14 rocky <rockyb@rubyforge.org>
|
1169
1105
|
|
@@ -1173,8 +1109,8 @@
|
|
1173
1109
|
|
1174
1110
|
* lib/rbdbgr.rb, processor/default.rb,
|
1175
1111
|
test/functional/test-immediate-step-bug.rb: Add Kernel#rbdbgr as a
|
1176
|
-
simple way to call the debugger.
|
1177
|
-
debugger code.
|
1112
|
+
simple way to call the debugger. More trace disabling inside
|
1113
|
+
debugger code. max stack default set back to 10 (from 16).
|
1178
1114
|
|
1179
1115
|
2010-05-13 R. Bernstein <rockyb@rubyforge.org>
|
1180
1116
|
|
@@ -1183,7 +1119,7 @@
|
|
1183
1119
|
processor/command/set_subcmd/max.rb, test/unit/test-app-util.rb:
|
1184
1120
|
Debugging in rails now works - tested only with rails 2 and mongrel.
|
1185
1121
|
Turn off tracing in debugger setup (new, debugger) until better
|
1186
|
-
solutions are implemented.
|
1122
|
+
solutions are implemented. Some stray debug statements a minor bug
|
1187
1123
|
fixes, e.g. "set max stack" was printing 2 times as many entries.
|
1188
1124
|
|
1189
1125
|
2010-05-11 rocky <rockyb@rubyforge.org>
|
@@ -1198,7 +1134,7 @@
|
|
1198
1134
|
test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb,
|
1199
1135
|
test/unit/test-app-disassemble.rb, test/unit/test-app-frame.rb,
|
1200
1136
|
test/unit/test-app-thread.rb: Work on "info thread <num>". More in
|
1201
|
-
needed.
|
1137
|
+
needed. Also one breakpoint test fails probably in conjunction with
|
1202
1138
|
changes after Ruby SVN 27660 and 27690.
|
1203
1139
|
|
1204
1140
|
2010-05-10 R. Bernstein <rockyb@rubyforge.org>
|
@@ -1223,13 +1159,11 @@
|
|
1223
1159
|
processor/command/set_subcmd/debug_subcmd/stack.rb,
|
1224
1160
|
processor/validate.rb, test/functional/test-debugger-call-bug.rb:
|
1225
1161
|
One of several bugs keeping Debugger#debugger from working more than
|
1226
|
-
the first time. More fixes to follow. debug_subcmd/stack.rb:
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
better fix. app/file.rb: guard against adding to ISEQ__ hash while
|
1232
|
-
enumerating over it.
|
1162
|
+
the first time. More fixes to follow. debug_subcmd/stack.rb: Setting wrong instance variable
|
1163
|
+
interface/user.rb, app/core.rb: move finalize from user to Debugger
|
1164
|
+
where we can make sure we've turned of tracing beforehand. validate: we are getting into a recursive trace when removing
|
1165
|
+
debugger iseqs. Omit until we figure out a better fix. app/file.rb: guard against adding to ISEQ__ hash while enumerating
|
1166
|
+
over it.
|
1233
1167
|
|
1234
1168
|
2010-05-07 rocky <rockyb@rubyforge.org>
|
1235
1169
|
|
@@ -1239,11 +1173,8 @@
|
|
1239
1173
|
|
1240
1174
|
2010-05-07 R. Bernstein <rockyb@rubyforge.org>
|
1241
1175
|
|
1242
|
-
|
1243
|
-
|
1244
|
-
2010-05-07 rocky <rockyb@rubyforge.org>
|
1245
|
-
|
1246
|
-
* app/core.rb: Small cleanups.
|
1176
|
+
* : commit 9efe1dcbf996993382eb50fb901f8d396dcb6608 Author: rocky
|
1177
|
+
<rockyb@rubyforge.org> Date: Fri May 7 18:40:33 2010 -0400
|
1247
1178
|
|
1248
1179
|
2010-05-07 rocky <rockyb@rubyforge.org>
|
1249
1180
|
|
@@ -1333,7 +1264,7 @@
|
|
1333
1264
|
processor/command/show_subcmd/debug_subcmd/stack.rb,
|
1334
1265
|
processor/default.rb, processor/main.rb,
|
1335
1266
|
test/unit/test-base-subcmd.rb: More work on macros. Check validity
|
1336
|
-
of expansion result.
|
1267
|
+
of expansion result. Add macro expansion debugging.
|
1337
1268
|
|
1338
1269
|
2010-05-04 rocky <rockyb@rubyforge.org>
|
1339
1270
|
|
@@ -1418,7 +1349,7 @@
|
|
1418
1349
|
processor/command/show_subcmd/trace_subcmd/buffer.rb,
|
1419
1350
|
processor/default.rb, processor/msg.rb,
|
1420
1351
|
test/unit/test-base-subcmd.rb: set maxstring -> set max[imum]
|
1421
|
-
string. set width -> set max width.
|
1352
|
+
string. set width -> set max width. Still need to handle show.
|
1422
1353
|
|
1423
1354
|
2010-05-03 rocky <rockyb@rubyforge.org>
|
1424
1355
|
|
@@ -1451,7 +1382,7 @@
|
|
1451
1382
|
|
1452
1383
|
* app/core.rb, processor/command/debug.rb, processor/main.rb:
|
1453
1384
|
core.rb: add mutex to ensure we don't switch threads while
|
1454
|
-
debugging.
|
1385
|
+
debugging. debug.rb: hide setup code into the debugger. main.rb:
|
1455
1386
|
don't debug into hidden frames
|
1456
1387
|
|
1457
1388
|
2010-04-29 rocky <rockyb@rubyforge.org>
|
@@ -1489,8 +1420,7 @@
|
|
1489
1420
|
* processor/command/print.rb, processor/main.rb: print.rb: now
|
1490
1421
|
preserves spacing given in command main.rb: now captures command
|
1491
1422
|
before aliasing (and later macro expansion) as well as string of
|
1492
|
-
first token given and remaining string after first token. Handling
|
1493
|
-
macros is where we are going with this.
|
1423
|
+
first token given and remaining string after first token. Handling macros is where we are going with this.
|
1494
1424
|
|
1495
1425
|
2010-04-25 rocky <rockyb@rubyforge.org>
|
1496
1426
|
|
@@ -1501,7 +1431,6 @@
|
|
1501
1431
|
* processor/command/reload.rb,
|
1502
1432
|
processor/command/reload_subcmd/command.rb: Add a "reload command".
|
1503
1433
|
|
1504
|
-
|
1505
1434
|
2010-04-23 rocky <rockyb@rubyforge.org>
|
1506
1435
|
|
1507
1436
|
* processor/default.rb, processor/load_cmds.rb, processor/mock.rb,
|
@@ -1569,14 +1498,8 @@
|
|
1569
1498
|
|
1570
1499
|
2010-04-14 rocky <rockyb@rubyforge.org>
|
1571
1500
|
|
1572
|
-
|
1573
|
-
|
1574
|
-
2010-04-14 rocky <rockyb@rubyforge.org>
|
1575
|
-
|
1576
|
-
* app/brkpt.rb, app/brkptmgr.rb, processor/breakpoint.rb,
|
1577
|
-
test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb: Chagne
|
1578
|
-
Breakpoint.new to take an options hash and add option to set what
|
1579
|
-
kind of breakpoint: line/offset.
|
1501
|
+
* : commit 7f31efad73be0d13dfb4596e88bf33d18b7b85cd Author: rocky
|
1502
|
+
<rockyb@rubyforge.org> Date: Wed Apr 14 06:50:37 2010 -0400
|
1580
1503
|
|
1581
1504
|
2010-04-13 rocky <rockyb@rubyforge.org>
|
1582
1505
|
|
@@ -1680,8 +1603,8 @@
|
|
1680
1603
|
test/unit/test-proc-help.rb, test/unit/test-proc-hook.rb,
|
1681
1604
|
test/unit/test-proc-main.rb, test/unit/test-proc-validate.rb,
|
1682
1605
|
test/unit/test-subcmd-help.rb: require_relative %w(a b c) =>
|
1683
|
-
require_relative 'a/b/c'
|
1684
|
-
|
1606
|
+
require_relative 'a/b/c' Starting with SVN revision #26959 require_relative no longer accepts
|
1607
|
+
an array argument.
|
1685
1608
|
|
1686
1609
|
2010-04-03 rocky <rockyb@rubyforge.org>
|
1687
1610
|
|
@@ -1850,10 +1773,10 @@
|
|
1850
1773
|
|
1851
1774
|
* interface/script.rb, processor/command/help.rb,
|
1852
1775
|
processor/default.rb, processor/main.rb: Some small script (debugger
|
1853
|
-
"source" command) fixes.
|
1854
|
-
running a script.
|
1855
|
-
lines help.rb: don't show aliases for a commmand where help
|
1856
|
-
subcommands were asked for.
|
1776
|
+
"source" command) fixes. script.rb: Don't show debugger output if
|
1777
|
+
running a script. main.rb; Slightly better handling of blank
|
1778
|
+
command lines help.rb: don't show aliases for a commmand where help
|
1779
|
+
on subcommands were asked for.
|
1857
1780
|
|
1858
1781
|
2010-03-20 rocky <rockyb@rubyforge.org>
|
1859
1782
|
|
@@ -1887,9 +1810,9 @@
|
|
1887
1810
|
processor/main.rb, test/functional/fn_helper.rb,
|
1888
1811
|
test/functional/test-delete.rb, test/functional/test-finish.rb,
|
1889
1812
|
test/functional/test-step.rb: New 'raise' command which raises an
|
1890
|
-
exception in the debugged program. The debugged-program's return
|
1891
|
-
|
1892
|
-
|
1813
|
+
exception in the debugged program. The debugged-program's return values are now prefaced with R=>
|
1814
|
+
rather than =>. Hopefully this makes things clearer while still
|
1815
|
+
somewhat intuitive.
|
1893
1816
|
|
1894
1817
|
2010-03-14 rocky <rockyb@rubyforge.org>
|
1895
1818
|
|
@@ -1911,15 +1834,15 @@
|
|
1911
1834
|
test/functional/test-condition.rb, test/functional/test-delete.rb,
|
1912
1835
|
test/functional/test-finish.rb, test/functional/test-next.rb,
|
1913
1836
|
test/functional/test-step.rb, test/functional/test-trace-var.rb:
|
1914
|
-
Show exception object when we have 'raise' event.
|
1915
|
-
has changed from prior commit. Track in test cases.
|
1837
|
+
Show exception object when we have 'raise' event. location output
|
1838
|
+
has changed from prior commit. Track in test cases. Show exception
|
1916
1839
|
object on 'raise' exception.
|
1917
1840
|
|
1918
1841
|
2010-03-13 rocky <rockyb@rubyforge.org>
|
1919
1842
|
|
1920
1843
|
* app/frame.rb, processor/command/info_subcmd/program.rb,
|
1921
1844
|
processor/hook.rb, processor/location.rb, processor/main.rb: Show
|
1922
|
-
more information in location.
|
1845
|
+
more information in location. If a call, the method name and params
|
1923
1846
|
If a return the return value.
|
1924
1847
|
|
1925
1848
|
2010-03-13 rocky <rockyb@rubyforge.org>
|
@@ -1927,13 +1850,12 @@
|
|
1927
1850
|
* app/default.rb, lib/rbdbgr.rb: Now that we have a patch for
|
1928
1851
|
ruby-1.9 to fix SEGV's in eval, debug_str works. Some minor tweaks.
|
1929
1852
|
|
1930
|
-
|
1931
1853
|
2010-03-13 rocky <rockyb@rubyforge.org>
|
1932
1854
|
|
1933
1855
|
* app/irb.rb, data/irbrc, processor/command/irb.rb: irb.rb:
|
1934
|
-
Syncronize IRB's BACK_TRACE_LIMIT with the debugger's.
|
1935
|
-
for eval shouldn't contain ":" since that causes IRB to think
|
1936
|
-
traceback are IRB bugs.
|
1856
|
+
Syncronize IRB's BACK_TRACE_LIMIT with the debugger's. irbrc:
|
1857
|
+
"file" for eval shouldn't contain ":" since that causes IRB to think
|
1858
|
+
to traceback are IRB bugs.
|
1937
1859
|
|
1938
1860
|
2010-03-11 rocky <rockyb@rubyforge.org>
|
1939
1861
|
|
@@ -1986,7 +1908,7 @@
|
|
1986
1908
|
|
1987
1909
|
* app/irb.rb, data/irbrc, processor/command/irb.rb,
|
1988
1910
|
processor/main.rb: Add command inside irb: dbgr to issue debugger
|
1989
|
-
statements.
|
1911
|
+
statements. Dry irb code a little.
|
1990
1912
|
|
1991
1913
|
2010-03-11 rocky <rockyb@rubyforge.org>
|
1992
1914
|
|
@@ -2038,7 +1960,7 @@
|
|
2038
1960
|
processor/command/set_subcmd/substitute_subcmd/eval.rb,
|
2039
1961
|
processor/command/up.rb, processor/frame.rb,
|
2040
1962
|
test/unit/test-proc-frame.rb: frame.rb, iseq.rb: use/show SHA1's for
|
2041
|
-
instruction sequences.
|
1963
|
+
instruction sequences. {up,down,frame,eval,stack}.rb: DRY code.
|
2042
1964
|
eval.rb, frame.rb: allow a frame parameter to eval.
|
2043
1965
|
|
2044
1966
|
2010-03-09 rocky <rockyb@rubyforge.org>
|
@@ -2047,8 +1969,7 @@
|
|
2047
1969
|
processor/command/set_subcmd/substitute_subcmd/eval.rb,
|
2048
1970
|
processor/frame.rb, processor/location.rb, processor/main.rb:
|
2049
1971
|
Automatic eval string remapping to a file in "list" stack and
|
2050
|
-
location listings. Manual remapping too via "set substitute eval".
|
2051
|
-
Todo possibly remove set substitute eval or change it to take a
|
1972
|
+
location listings. Manual remapping too via "set substitute eval". Todo possibly remove set substitute eval or change it to take a
|
2052
1973
|
frame #. Work in rb-threadframe to get sha1/checksum of iseq instead
|
2053
1974
|
of inspect name.
|
2054
1975
|
|
@@ -2062,7 +1983,7 @@
|
|
2062
1983
|
test/functional/test-delete.rb, test/functional/test-finish.rb,
|
2063
1984
|
test/functional/test-step.rb: main.rb: auto-eval output looks more
|
2064
1985
|
like irb using inspect and prefaced with => print.rb: Add print
|
2065
|
-
command which uses safe-repr for output.
|
1986
|
+
command which uses safe-repr for output. eaval.rb: add a kind of
|
2066
1987
|
eval that field hide exceptions.
|
2067
1988
|
|
2068
1989
|
2010-03-08 rocky <rockyb@rubyforge.org>
|
@@ -2094,13 +2015,12 @@
|
|
2094
2015
|
* app/default.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
|
2095
2016
|
test/unit/test-app-options.rb: Add --nx and @settings[:nx] options.
|
2096
2017
|
|
2097
|
-
|
2098
2018
|
2010-03-08 R. Bernstein <rocky@gnu.org>
|
2099
2019
|
|
2100
2020
|
* interface/script.rb, lib/rbdbgr.rb: rbdbgr.rb: Bug: --command used
|
2101
|
-
|
2102
|
-
|
2103
|
-
|
2021
|
+
wrong interface. singleton methods debug and debug_str: pass options
|
2022
|
+
to Debugger.new. Set different off on debug_s tr by
|
2023
|
+
default
|
2104
2024
|
|
2105
2025
|
2010-03-07 R. Bernstein <rocky@gnu.org>
|
2106
2026
|
|
@@ -2112,9 +2032,8 @@
|
|
2112
2032
|
|
2113
2033
|
* app/default.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
|
2114
2034
|
test/unit/test-app-options.rb: Start --command option. Not fully
|
2115
|
-
done yet. options.rb: Fix bug in show_version(). setup_options():
|
2116
|
-
|
2117
|
-
lib/rbdbgr.rb: setup options in a way that won't mess up
|
2035
|
+
done yet. options.rb: Fix bug in show_version(). setup_options(): make more
|
2036
|
+
functional in handling of --help and --version. lib/rbdbgr.rb: setup options in a way that won't mess up
|
2118
2037
|
DEFAULT_CMDLINE_SETTINGS. Accumulate startup-files for --command
|
2119
2038
|
option.
|
2120
2039
|
|
@@ -2147,7 +2066,7 @@
|
|
2147
2066
|
|
2148
2067
|
* app/core.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
|
2149
2068
|
test/unit/test-app-options.rb: Add first rbdbgr option --chdir. Fix
|
2150
|
-
bugs in handling that.
|
2069
|
+
bugs in handling that. app/core.rb DEFAULT_SETTINGS ->
|
2151
2070
|
CORE_DEFAULT_SETTINGS to avoid constant name clashes.
|
2152
2071
|
|
2153
2072
|
2010-03-01 rocky <rockyb@rubyforge.org>
|
@@ -2219,13 +2138,13 @@
|
|
2219
2138
|
processor/command/show_subcmd/debug.rb, profile/irbrc,
|
2220
2139
|
test/unit/test-app-util.rb: Lots of bug fixes and goodness.
|
2221
2140
|
app/frame.rb: was listing C params in reverse order. safe_repr each
|
2222
|
-
|
2223
|
-
|
2224
|
-
|
2225
|
-
|
2226
|
-
|
2227
|
-
|
2228
|
-
|
2141
|
+
arg was adding a non-existent optional argument info_subcmd/args.rb:
|
2142
|
+
Fix buggy test for whether params may have changed. Also fix wrong
|
2143
|
+
C param order. Rakefile: forgot to add data directory to
|
2144
|
+
distribution profile/irbrc -> data/irbrc, app/irb.rb: consolidate
|
2145
|
+
files into one directory. Data wins app/util.rb: safe_repr now
|
2146
|
+
matches quotes and can be told what suffix (...) to use rbdbgr.rb:
|
2147
|
+
don't debug inside in debug.
|
2229
2148
|
|
2230
2149
|
2010-02-26 rocky <rockyb@rubyforge.org>
|
2231
2150
|
|
@@ -2303,12 +2222,11 @@
|
|
2303
2222
|
When this is fixed we can do the below. Until then we need to at
|
2304
2223
|
least remove C calls and returns and possibly other events as well.
|
2305
2224
|
|
2306
|
-
|
2307
2225
|
2010-02-23 rocky <rockyb@rubyforge.org>
|
2308
2226
|
|
2309
2227
|
* app/file.rb, processor/command/info_subcmd/break.rb,
|
2310
2228
|
processor/validate.rb, test/unit/test-proc-validate.rb: break.rb:
|
2311
|
-
allow showing breakpoint by number. Improve help.
|
2229
|
+
allow showing breakpoint by number. Improve help. app/file.rb:
|
2312
2230
|
remove Ruby warning messages validate.rb: add int list routine
|
2313
2231
|
|
2314
2232
|
2010-02-22 rocky <rockyb@rubyforge.org>
|
@@ -2319,9 +2237,9 @@
|
|
2319
2237
|
test/functional/test-break.rb, test/functional/test-condition.rb,
|
2320
2238
|
test/functional/test-delete.rb, test/unit/cmd-helper.rb,
|
2321
2239
|
test/unit/test-cmd-break.rb: sp.rb: Add ability to change VM stack
|
2322
|
-
entries.
|
2240
|
+
entries. frame.rb: Fix bug which was messing up class values inside
|
2323
2241
|
C functions breakpoint.rb: make message look more like gdb Remove
|
2324
|
-
some Ruby warning messages.
|
2242
|
+
some Ruby warning messages. main.rb: remove duplicate
|
2325
2243
|
load_debugger_commands method
|
2326
2244
|
|
2327
2245
|
2010-02-20 rocky <rockyb@rubyforge.org>
|
@@ -2355,7 +2273,7 @@
|
|
2355
2273
|
* app/core.rb, app/display.rb, app/frame.rb,
|
2356
2274
|
processor/command/display.rb, processor/command/where.rb,
|
2357
2275
|
processor/display.rb, processor/hook.rb, processor/main.rb:
|
2358
|
-
where.rb, frame.rb: C function class name workaround.
|
2276
|
+
where.rb, frame.rb: C function class name workaround. display.rb,
|
2359
2277
|
hook.rb, main.rb: start display expressions. Not working yet - wait
|
2360
2278
|
for next commit.
|
2361
2279
|
|
@@ -2369,7 +2287,7 @@
|
|
2369
2287
|
* processor/command/info_subcmd/program.rb,
|
2370
2288
|
processor/command/info_subcmd/return.rb,
|
2371
2289
|
processor/command/set_subcmd/return.rb: info_subcmd/program.rb:
|
2372
|
-
Don't assume we have an iseq.
|
2290
|
+
Don't assume we have an iseq. return.rb: remove C-call again, until
|
2373
2291
|
we can figure out what's wrong.
|
2374
2292
|
|
2375
2293
|
2010-02-18 rocky <rockyb@rubyforge.org>
|
@@ -2384,14 +2302,13 @@
|
|
2384
2302
|
processor/command/set_subcmd/return.rb,
|
2385
2303
|
processor/command/set_subcmd/substitute_subcmd/string.rb,
|
2386
2304
|
processor/mock.rb: return.rb: Add a way to set a method return
|
2387
|
-
value: "set return".
|
2305
|
+
value: "set return". string.rb, different.rb: improve help strings
|
2388
2306
|
mock.rb: set ISEQS__ and SCRIPT_ISEQS__
|
2389
2307
|
|
2390
2308
|
2010-02-17 rocky <rockyb@rubyforge.org>
|
2391
2309
|
|
2392
2310
|
* processor/command/info_subcmd/iseq.rb: Bug in running "info iseq"
|
2393
2311
|
|
2394
|
-
|
2395
2312
|
2010-02-17 rocky <rockyb@rubyforge.org>
|
2396
2313
|
|
2397
2314
|
* processor/command/set_subcmd/different.rb,
|
@@ -2431,9 +2348,9 @@
|
|
2431
2348
|
processor/command/enable.rb, processor/load_cmds.rb,
|
2432
2349
|
processor/main.rb: breakpoint.rb: Better invalid breakpoint number
|
2433
2350
|
error messages condition.rb: condition closer to working - but still
|
2434
|
-
not operational.
|
2435
|
-
attr_accessor load_cmds.rb: better demo code main.rb:
|
2436
|
-
interpreting breakpoint condition
|
2351
|
+
not operational. main.rb, load_cmds.rb: move declaration of
|
2352
|
+
commands attr_accessor load_cmds.rb: better demo code main.rb:
|
2353
|
+
closer to interpreting breakpoint condition
|
2437
2354
|
|
2438
2355
|
2010-02-15 rocky <rockyb@rubyforge.org>
|
2439
2356
|
|
@@ -2459,7 +2376,7 @@
|
|
2459
2376
|
2010-02-15 rocky <rockyb@rubyforge.org>
|
2460
2377
|
|
2461
2378
|
* README, lib/rbdbgr.rb, processor/command/list.rb: rbdbgr.rb: Add
|
2462
|
-
Debugger.debug singleton. Set return code properly.
|
2379
|
+
Debugger.debug singleton. Set return code properly. list.rb: small
|
2463
2380
|
bug in listing
|
2464
2381
|
|
2465
2382
|
2010-02-14 rocky <rockyb@rubyforge.org>
|
@@ -2510,7 +2427,7 @@
|
|
2510
2427
|
|
2511
2428
|
* processor/command/help.rb, processor/validate.rb,
|
2512
2429
|
test/unit/test-cmd-help.rb: help.rb: Give help on command name for
|
2513
|
-
alias.
|
2430
|
+
alias. validate.rb: allow lookup for iseq when there is only one.
|
2514
2431
|
test-cmd-help.rb: more extensive testing.
|
2515
2432
|
|
2516
2433
|
2010-02-12 rocky <rockyb@rubyforge.org>
|
@@ -2532,7 +2449,7 @@
|
|
2532
2449
|
2010-02-11 rocky <rockyb@rubyforge.org>
|
2533
2450
|
|
2534
2451
|
* lib/rbdbgr.rb, profile/irbrc: lib/rbdbgr.rb: Set SCRIPT_ISEQS so
|
2535
|
-
this be used.
|
2452
|
+
this be used. profile/irbrc: note that you can use 'q' for quit.
|
2536
2453
|
|
2537
2454
|
2010-02-11 rocky <rockyb@rubyforge.org>
|
2538
2455
|
|
@@ -2554,8 +2471,8 @@
|
|
2554
2471
|
* processor/command/set_subcmd/trace.rb,
|
2555
2472
|
processor/command/show_subcmd/basename.rb,
|
2556
2473
|
processor/command/show_subcmd/trace.rb, processor/help.rb:
|
2557
|
-
show_subcmd/trace.rb: Add 'show trace'.
|
2558
|
-
in summary help basename.rb: standalone correction.
|
2474
|
+
show_subcmd/trace.rb: Add 'show trace'. processor/help.rb: fix bug
|
2475
|
+
in summary help basename.rb: standalone correction. trace.rb: much
|
2559
2476
|
more in the way of describing what's going on in the help.
|
2560
2477
|
|
2561
2478
|
2010-02-09 rocky <rockyb@rubyforge.org>
|
@@ -2579,7 +2496,6 @@
|
|
2579
2496
|
processor/main.rb, test/unit/test-proc-hook.rb,
|
2580
2497
|
test/unit/test-proc-validate.rb: First command hook (autoirb) added.
|
2581
2498
|
|
2582
|
-
|
2583
2499
|
2010-02-07 rocky <rockyb@rubyforge.org>
|
2584
2500
|
|
2585
2501
|
* processor/hook.rb, processor/main.rb,
|
@@ -2596,7 +2512,6 @@
|
|
2596
2512
|
|
2597
2513
|
* test/functional/test-delete.rb: Add first delete functional test.
|
2598
2514
|
|
2599
|
-
|
2600
2515
|
2010-01-27 rocky <rockyb@rubyforge.org>
|
2601
2516
|
|
2602
2517
|
* processor/breakpoint.rb, processor/command/delete.rb: Start delete
|
@@ -2628,8 +2543,8 @@
|
|
2628
2543
|
processor/command/info_subcmd/file.rb,
|
2629
2544
|
test/functional/test-break.rb, test/unit/test-cmd-endisable.rb: Fix
|
2630
2545
|
bug in info break. Allow bp number to get reset, although what's
|
2631
|
-
really needed is a rework of the bp and manger interfaces.
|
2632
|
-
working again.
|
2546
|
+
really needed is a rework of the bp and manger interfaces. Get
|
2547
|
+
tests working again.
|
2633
2548
|
|
2634
2549
|
2009-12-30 rocky <rockyb@rubyforge.org>
|
2635
2550
|
|
@@ -2650,7 +2565,7 @@
|
|
2650
2565
|
* app/core.rb, processor/command/set_subcmd/auto.rb,
|
2651
2566
|
processor/command/set_subcmd/maxstring.rb,
|
2652
2567
|
processor/command/set_subcmd/width.rb: maxstring.rb: dry code. More
|
2653
|
-
is needed.
|
2568
|
+
is needed. width.rb: was buggy - should now work core.rb: add core
|
2654
2569
|
event debug setting
|
2655
2570
|
|
2656
2571
|
2009-12-07 rocky <rockyb@rubyforge.org>
|
@@ -2668,8 +2583,9 @@
|
|
2668
2583
|
|
2669
2584
|
* lib/rbdbgr.rb,
|
2670
2585
|
processor/command/set_subcmd/substitute_subcmd/string.rb: Make
|
2671
|
-
debugger &block is less broken, or rather broken in another way.
|
2672
|
-
substitute allows you to let it figure out what the iseq name
|
2586
|
+
debugger &block is less broken, or rather broken in another way.
|
2587
|
+
Set substitute allows you to let it figure out what the iseq name
|
2588
|
+
is.
|
2673
2589
|
|
2674
2590
|
2009-12-06 rocky <rockyb@rubyforge.org>
|
2675
2591
|
|
@@ -2725,10 +2641,9 @@
|
|
2725
2641
|
test/unit/test-lib-brkpt.rb: lib/irb.rb -> lib/dbgr-irb.rb The name
|
2726
2642
|
lib/irb.rb causes it to be seen in gem package and conflict with the
|
2727
2643
|
real irb's irb.rb! For now rename. May however move everything
|
2728
|
-
except rbdbgr.rb out of lib. rbdbgr.rb -> lib/rbdbgr.rb : irb
|
2729
|
-
|
2730
|
-
|
2731
|
-
description different from summary to keep rake happy.
|
2644
|
+
except rbdbgr.rb out of lib. rbdbgr.rb -> lib/rbdbgr.rb : irb wasn't finding "require 'rbdbgr'"
|
2645
|
+
because rbdbgr seems to be expected to live in lib. Rakefile: Update homepage and make description different from
|
2646
|
+
summary to keep rake happy.
|
2732
2647
|
|
2733
2648
|
2009-12-06 rocky <rockyb@rubyforge.org>
|
2734
2649
|
|
@@ -2804,8 +2719,8 @@
|
|
2804
2719
|
processor/command/set_subcmd/auto_subcmd/list.rb,
|
2805
2720
|
processor/command/show_subcmd/auto_subcmd/list.rb,
|
2806
2721
|
processor/main.rb, processor/mock.rb, test/functional/test-step.rb:
|
2807
|
-
Add set/show auto list. In the process added pre-commands hook.
|
2808
|
-
up SHORT_HELP from help in subcommands.
|
2722
|
+
Add set/show auto list. In the process added pre-commands hook.
|
2723
|
+
Pick up SHORT_HELP from help in subcommands.
|
2809
2724
|
|
2810
2725
|
2009-11-06 rocky <rockyb@rubyforge.org>
|
2811
2726
|
|
@@ -2833,7 +2748,7 @@
|
|
2833
2748
|
processor/command/list.rb, processor/validate.rb,
|
2834
2749
|
test/functional/test-break.rb, test/unit/test-cmd-break.rb: Add
|
2835
2750
|
breakpoint indicators in "list" command. Show line number(s) when a
|
2836
|
-
breakpoint just set.
|
2751
|
+
breakpoint just set. Revise listing to use containers, rather than
|
2837
2752
|
file names.
|
2838
2753
|
|
2839
2754
|
2009-11-04 rocky <rockyb@rubyforge.org>
|
@@ -2844,20 +2759,8 @@
|
|
2844
2759
|
|
2845
2760
|
2009-11-04 rocky <rockyb@rubyforge.org>
|
2846
2761
|
|
2847
|
-
|
2848
|
-
|
2849
|
-
2009-11-04 rocky <rockyb@rubyforge.org>
|
2850
|
-
|
2851
|
-
* processor/command/base/subsubmgr.rb,
|
2852
|
-
processor/command/info_subcmd/registers.rb,
|
2853
|
-
processor/command/info_subcmd/registers_subcmd/helper.rb,
|
2854
|
-
processor/command/info_subcmd/registers_subcmd/lfp.rb,
|
2855
|
-
processor/command/info_subcmd/registers_subcmd/pc.rb,
|
2856
|
-
processor/command/info_subcmd/registers_subcmd/sp.rb,
|
2857
|
-
processor/validate.rb: subsubmgr.rb: Fix bug in "help command
|
2858
|
-
subcommand param". validate.rb: bug using wrong hash key.
|
2859
|
-
registers/*: longer help. lfp.rb: check range. I probably have
|
2860
|
-
indexing backwards and allow one too many. Perhaps more later.
|
2762
|
+
* : commit 560ef74dd49b8cb587b2e47ca81af82e956e406d Author: rocky
|
2763
|
+
<rockyb@rubyforge.org> Date: Wed Nov 4 06:08:33 2009 -0500
|
2861
2764
|
|
2862
2765
|
2009-11-02 R. Bernstein <rocky@gnu.org>
|
2863
2766
|
|
@@ -2887,8 +2790,8 @@
|
|
2887
2790
|
processor/command/step.rb, processor/main.rb, processor/running.rb,
|
2888
2791
|
profile/irbrc, test/functional/test-step.rb: Go over some stepping
|
2889
2792
|
oddities and bugs. Add command NEED_RUNNING: start putting tracking
|
2890
|
-
commands that need a running program.
|
2891
|
-
Fix bug in "finish" command and "set debug skip" now works.
|
2793
|
+
commands that need a running program. irb -d now sets global
|
2794
|
+
$frame. Fix bug in "finish" command and "set debug skip" now works.
|
2892
2795
|
|
2893
2796
|
2009-10-29 rocky <rockyb@rubyforge.org>
|
2894
2797
|
|
@@ -2925,8 +2828,8 @@
|
|
2925
2828
|
emacs/rbdbg-var.el, emacs/rbdbgr-core.el,
|
2926
2829
|
emacs/test/test-regexp.el, emacs/test/test-track.el, lib/brkpt.rb,
|
2927
2830
|
rbdbgr.rb: emacs/*: start to separate buffer-local vars for the
|
2928
|
-
|
2929
|
-
|
2831
|
+
process buffer from the buffer-local vars of the (top-level Ruby)
|
2832
|
+
script buffer. reset: mostly small doc-like changes.
|
2930
2833
|
|
2931
2834
|
2009-10-26 rocky <rockyb@rubyforge.org>
|
2932
2835
|
|
@@ -2949,8 +2852,8 @@
|
|
2949
2852
|
|
2950
2853
|
* emacs/rbdbg-track-mode.el, emacs/rbdbgr-core.el,
|
2951
2854
|
emacs/rbdbgr-track-mode.el, processor/command/info_subcmd/iseq.rb:
|
2952
|
-
iseq.rb: Show more information in "info seq". emacs/*: Key-bindings
|
2953
|
-
|
2855
|
+
iseq.rb: Show more information in "info seq". emacs/*: Key-bindings workaround in rbdbgr-track-mode and other
|
2856
|
+
fixes.
|
2954
2857
|
|
2955
2858
|
2009-10-25 rocky <rockyb@rubyforge.org>
|
2956
2859
|
|
@@ -2967,7 +2870,7 @@
|
|
2967
2870
|
* processor/command/disassemble.rb,
|
2968
2871
|
processor/command/info_subcmd/iseq.rb: iseq.rb: Show instruction
|
2969
2872
|
sequence breakpoints disassemble.rb: short by default (option is now
|
2970
|
-
|
2873
|
+
"full") allow '.' for current instruction sequence.
|
2971
2874
|
|
2972
2875
|
2009-10-24 rocky <rockyb@rubyforge.org>
|
2973
2876
|
|
@@ -3004,14 +2907,13 @@
|
|
3004
2907
|
processor/command/set_subcmd/substitute_subcmd/string.rb,
|
3005
2908
|
processor/frame.rb, processor/location.rb, processor/main.rb,
|
3006
2909
|
processor/validate.rb: Add "set substitute string" to map string
|
3007
|
-
eval names into a (temporary) file.
|
2910
|
+
eval names into a (temporary) file. emacs: expand regexp to deal
|
3008
2911
|
with "via" or "remap" strings.
|
3009
2912
|
|
3010
2913
|
2009-10-23 R. Bernstein <rocky@gnu.org>
|
3011
2914
|
|
3012
2915
|
* processor/command/info_subcmd/file.rb: Bug in running "info file"
|
3013
2916
|
|
3014
|
-
|
3015
2917
|
2009-10-23 R. Bernstein <rocky@gnu.org>
|
3016
2918
|
|
3017
2919
|
* processor/command/info_subcmd/iseq.rb,
|
@@ -3021,17 +2923,8 @@
|
|
3021
2923
|
|
3022
2924
|
2009-10-23 R. Bernstein <rocky@gnu.org>
|
3023
2925
|
|
3024
|
-
|
3025
|
-
|
3026
|
-
2009-10-23 R. Bernstein <rocky@gnu.org>
|
3027
|
-
|
3028
|
-
* processor/command/info_subcmd/registers_subcmd/lfp.rb,
|
3029
|
-
processor/command/info_subcmd/registers_subcmd/pc.rb,
|
3030
|
-
processor/command/info_subcmd/registers_subcmd/sp.rb,
|
3031
|
-
processor/command/set_subcmd/substitute.rb,
|
3032
|
-
processor/command/set_subcmd/substitute_subcmd/path.rb,
|
3033
|
-
processor/main.rb: Add gdb "set substitute path" in rudimentary
|
3034
|
-
form.
|
2926
|
+
* : commit 97e43a889e41ba9838e763cd28e394ec7205e0af Author: R.
|
2927
|
+
Bernstein <rocky@gnu.org> Date: Fri Oct 23 16:02:31 2009 -0400
|
3035
2928
|
|
3036
2929
|
2009-10-22 rocky <rockyb@rubyforge.org>
|
3037
2930
|
|
@@ -3043,7 +2936,7 @@
|
|
3043
2936
|
processor/command/info_subcmd/file.rb, processor/main.rb: main.rb,
|
3044
2937
|
file.rb: Remapping <internal:prelude> and more generally any file
|
3045
2938
|
remapped shows up cmd.rb, file.rb: Show breakpoint numbers in the
|
3046
|
-
way numbers are generally handled.
|
2939
|
+
way numbers are generally handled. in location line and has "info
|
3047
2940
|
file" properties shown.
|
3048
2941
|
|
3049
2942
|
2009-10-22 rocky <rockyb@rubyforge.org>
|
@@ -3082,7 +2975,6 @@
|
|
3082
2975
|
processor/main.rb, processor/validate.rb: Fix various bugs in/off of
|
3083
2976
|
"disassemble" command, and showing internal debugger traceback, etc.
|
3084
2977
|
|
3085
|
-
|
3086
2978
|
2009-10-20 rocky <rockyb@rubyforge.org>
|
3087
2979
|
|
3088
2980
|
* processor/command/info_subcmd/registers_subcmd/lfp.rb,
|
@@ -3115,7 +3007,7 @@
|
|
3115
3007
|
processor/command/where.rb, processor/default.rb, processor/main.rb:
|
3116
3008
|
main.rb: Don't crap out on an unhandled exception in running a
|
3117
3009
|
command. We now have enough of the debugger working where we can
|
3118
|
-
dynamically investicagate and fix things.
|
3010
|
+
dynamically investicagate and fix things. Add "set/show debug"
|
3119
3011
|
subcommands for turning on/off internal debugger debugging.
|
3120
3012
|
|
3121
3013
|
2009-10-20 rocky <rockyb@rubyforge.org>
|
@@ -3167,8 +3059,8 @@
|
|
3167
3059
|
|
3168
3060
|
* processor/command/break.rb, processor/main.rb,
|
3169
3061
|
test/functional/fn_helper.rb, test/functional/test-break.rb:
|
3170
|
-
main.rb: Fix bug in "disable" command.
|
3171
|
-
in container.
|
3062
|
+
main.rb: Fix bug in "disable" command. break.rb: Canonicalize name
|
3063
|
+
in container. test/* grow for testing breakpoints.
|
3172
3064
|
|
3173
3065
|
2009-10-19 rocky <rockyb@rubyforge.org>
|
3174
3066
|
|
@@ -3186,7 +3078,7 @@
|
|
3186
3078
|
processor/command/break.rb, processor/command/enable.rb,
|
3187
3079
|
processor/running.rb: processor/command: add an "enable" command.
|
3188
3080
|
processor/{breakpoint,running}.rb: move breakpoint code to a
|
3189
|
-
separate file.
|
3081
|
+
separate file. processor/command/break.rb: category should be
|
3190
3082
|
"breakpoint", not "running" lib/brkpt.rb: add enabled=
|
3191
3083
|
|
3192
3084
|
2009-10-19 R. Bernstein <rocky@gnu.org>
|
@@ -3205,7 +3097,7 @@
|
|
3205
3097
|
processor/command/info_subcmd/file.rb,
|
3206
3098
|
processor/command/info_subcmd/frame.rb,
|
3207
3099
|
processor/command/info_subcmd/program.rb: command/info_sub/break.rb:
|
3208
|
-
Add "info break" command.
|
3100
|
+
Add "info break" command. command/{break.rb,info_sub/program.rb}:
|
3209
3101
|
Use instruction sequence names to start to disambiguate locations.
|
3210
3102
|
lib/break.rb: Add ignore field to breakpoint object.
|
3211
3103
|
lib/brkptmgr.rb: add more of the useful Enumerable operators to
|
@@ -3250,8 +3142,8 @@
|
|
3250
3142
|
processor/command/set_subcmd/auto_sub/irb.rb,
|
3251
3143
|
processor/command/set_subcmd/auto_subcmd/eval.rb,
|
3252
3144
|
processor/command/set_subcmd/auto_subcmd/irb.rb,
|
3253
|
-
processor/command/show_subcmd/auto.rb: Add "info file" command.
|
3254
|
-
"set auto" subcommand.
|
3145
|
+
processor/command/show_subcmd/auto.rb: Add "info file" command. Fix
|
3146
|
+
"set auto" subcommand. Remove extra \n in "List subcommands" help.
|
3255
3147
|
Tidy up code more.
|
3256
3148
|
|
3257
3149
|
2009-10-17 rocky <rockyb@rubyforge.org>
|
@@ -3263,14 +3155,14 @@
|
|
3263
3155
|
processor/command/info_subcmd/registers.rb,
|
3264
3156
|
processor/command/info_subcmd/return.rb, processor/main.rb,
|
3265
3157
|
processor/mock.rb, processor/msg.rb, processor/running.rb,
|
3266
|
-
test/unit/test-lib-brkptmgr.rb: Lots of little changes...
|
3158
|
+
test/unit/test-lib-brkptmgr.rb: Lots of little changes... main.rb:
|
3267
3159
|
Check breakpoint condition and find breakpoint command/info_subcmd:
|
3268
3160
|
add PREFIX for future use command/info_subcmd/registers.rb: Minimum
|
3269
3161
|
abbrev is now "reg" since there is a "return" command/break.rb: "b"
|
3270
3162
|
is an alias for "break" lib/brkpt.rb: add enabled parameter, stay
|
3271
3163
|
clear of name "binding" lib/brkptmgr.rb: add a "find" and "size"
|
3272
|
-
commands, and access to list.
|
3273
|
-
msg_nocr; DRY standalone code.
|
3164
|
+
commands, and access to list. command/*: complete I/O routine with
|
3165
|
+
msg_nocr; DRY standalone code. running.rb: remove debug code.
|
3274
3166
|
|
3275
3167
|
2009-10-17 rocky <rockyb@rubyforge.org>
|
3276
3168
|
|
@@ -3285,7 +3177,7 @@
|
|
3285
3177
|
processor/command/show_subcmd/auto_subcmd/eval.rb,
|
3286
3178
|
processor/command/show_subcmd/auto_subcmd/irb.rb,
|
3287
3179
|
processor/running.rb: Add a minimal breakpoint command. Add some gem
|
3288
|
-
install workarounds.
|
3180
|
+
install workarounds. Redmove need for short help constant in
|
3289
3181
|
subcommands.
|
3290
3182
|
|
3291
3183
|
2009-10-17 rocky <rockyb@rubyforge.org>
|
@@ -3359,9 +3251,8 @@
|
|
3359
3251
|
processor/command/base_subsubmgr.rb, processor/command/help.rb,
|
3360
3252
|
processor/subcmd.rb: help.rb, base_submgr.rb: Allow regexp matching
|
3361
3253
|
of command names for help listing. Idea courtesy of Michael Lord
|
3362
|
-
Welles. base_subcmd.rb + above: DRY columnize code
|
3363
|
-
|
3364
|
-
decide on whether to lookup by regexp or not.
|
3254
|
+
Welles. base_subcmd.rb + above: DRY columnize code brkptmgr.rb: Fix stupid syntax bug subcmd.rb: lookup() add optional parameter to decide on whether to
|
3255
|
+
lookup by regexp or not.
|
3365
3256
|
|
3366
3257
|
2009-10-17 rocky <rockyb@rubyforge.org>
|
3367
3258
|
|
@@ -3429,7 +3320,7 @@
|
|
3429
3320
|
processor/command/info_subcmd/registers_subcmd/sp.rb,
|
3430
3321
|
processor/command/show_subcmd/auto.rb, processor/default.rb,
|
3431
3322
|
processor/msg.rb: complete "info registers", adding "info register
|
3432
|
-
lfp". Tidy help * output.
|
3323
|
+
lfp". Tidy help * output. default.rb: add saferep to truncate long
|
3433
3324
|
strings.
|
3434
3325
|
|
3435
3326
|
2009-10-14 rocky <rockyb@rubyforge.org>
|
@@ -3451,8 +3342,8 @@
|
|
3451
3342
|
processor/command/show_subcmd/auto_subcmd/irb.rb,
|
3452
3343
|
processor/command/show_subcmd/autoeval.rb,
|
3453
3344
|
processor/command/show_subcmd/autoirb.rb: sub commands of 'show
|
3454
|
-
auto' works, more or less.
|
3455
|
-
in favor of 'show auto eval' and 'show auto irb'.
|
3345
|
+
auto' works, more or less. Remove 'show autoeval' and 'show
|
3346
|
+
autoirb' in favor of 'show auto eval' and 'show auto irb'.
|
3456
3347
|
|
3457
3348
|
2009-10-13 R. Bernstein <rocky@gnu.org>
|
3458
3349
|
|
@@ -3503,8 +3394,8 @@
|
|
3503
3394
|
processor/command/info_subcmd/pc.rb,
|
3504
3395
|
processor/command/info_subcmd/registers.rb: Add "info registers" in
|
3505
3396
|
the spirit of gdb. Remove "info pc" as this is now covered by "info
|
3506
|
-
registers".
|
3507
|
-
ones.
|
3397
|
+
registers". frame.rb: now shows: manditory parameters after
|
3398
|
+
optional ones.
|
3508
3399
|
|
3509
3400
|
2009-09-30 rocky <rockyb@rubyforge.org>
|
3510
3401
|
|
@@ -3531,7 +3422,7 @@
|
|
3531
3422
|
processor/command/info_subcmd/return.rb,
|
3532
3423
|
processor/command/info_subcmd/sp.rb, test/functional/.gitignore,
|
3533
3424
|
test/unit/test-cmd-kill.rb: pc.rb, sp.rb: add "info pc" and "info
|
3534
|
-
sp" commands.
|
3425
|
+
sp" commands. info_subcmd/*.rb: remove SHORT_HELP which is set by
|
3535
3426
|
base class.
|
3536
3427
|
|
3537
3428
|
2009-09-29 rocky <rockyb@rubyforge.org>
|
@@ -3557,13 +3448,12 @@
|
|
3557
3448
|
|
3558
3449
|
* test/functional/test-next.rb: Add "next" command functional test.
|
3559
3450
|
|
3560
|
-
|
3561
3451
|
2009-09-27 rocky <rockyb@rubyforge.org>
|
3562
3452
|
|
3563
3453
|
* lib/frame.rb, processor/command/finish.rb,
|
3564
3454
|
processor/command/step.rb, processor/main.rb, processor/running.rb,
|
3565
3455
|
test/functional/test-step.rb: Add "finish" command. Fix bugs in
|
3566
|
-
stepping to specific events.
|
3456
|
+
stepping to specific events. Add event names for all events: add
|
3567
3457
|
switch, coverage and vm.
|
3568
3458
|
|
3569
3459
|
2009-09-27 rocky <rockyb@rubyforge.org>
|
@@ -3575,14 +3465,14 @@
|
|
3575
3465
|
* interface/base_intf.rb, interface/script.rb, interface/user.rb,
|
3576
3466
|
io/input.rb, processor/command/list.rb, processor/main.rb,
|
3577
3467
|
processor/validate.rb, rbdbgr.rb, test/functional/test-step.rb: Null
|
3578
|
-
return on interactive input now uses last command.
|
3468
|
+
return on interactive input now uses last command. Various code
|
3579
3469
|
cleanups mostly on interfaces. More functional tests.
|
3580
3470
|
|
3581
3471
|
2009-09-26 rocky <rockyb@rubyforge.org>
|
3582
3472
|
|
3583
3473
|
* lib/file.rb, processor/command/list.rb, processor/main.rb,
|
3584
3474
|
processor/validate.rb: List function-name works now. list file:line
|
3585
|
-
works too.
|
3475
|
+
works too. Don't show file text if there's nothing to show.
|
3586
3476
|
|
3587
3477
|
2009-09-26 rocky <rockyb@rubyforge.org>
|
3588
3478
|
|
@@ -3592,7 +3482,7 @@
|
|
3592
3482
|
bin/rbdbgr run.rb: Move Rbdbgr module to a module list.rb: bang on
|
3593
3483
|
some more restart.rb: Add Ruby interpreter if $0 is not executable
|
3594
3484
|
mock.rb: remove debug statement rbdbgr.rb: Add :set_restart option
|
3595
|
-
|
3485
|
+
which is less cumbersome than using :restart_argv
|
3596
3486
|
|
3597
3487
|
2009-09-26 rocky <rockyb@rubyforge.org>
|
3598
3488
|
|
@@ -3605,7 +3495,7 @@
|
|
3605
3495
|
|
3606
3496
|
* processor/command/info_subcmd/frame.rb, processor/frame.rb:
|
3607
3497
|
processor/info_subcmd/frame.rb: DRY code processor/frame.rb:
|
3608
|
-
|
3498
|
+
offset2lines semantic change in rb-threadframe. reduce bogus
|
3609
3499
|
behavior in standalone code.
|
3610
3500
|
|
3611
3501
|
2009-09-26 rocky <rockyb@rubyforge.org>
|
@@ -3615,12 +3505,10 @@
|
|
3615
3505
|
processor/mock.rb, processor/validate.rb,
|
3616
3506
|
test/unit/test-proc-frame.rb, test/unit/test-proc-validate.rb:
|
3617
3507
|
list.rb: Hammer on "list" command a little. Needs a lot more work
|
3618
|
-
though. validate.rb: Use confirm from interface in command
|
3619
|
-
|
3620
|
-
|
3621
|
-
|
3622
|
-
proc-frame) file.rb Speaking of bogusness, add parse location
|
3623
|
-
routine which doesn't work yet.
|
3508
|
+
though. validate.rb: Use confirm from interface in command processor. defaults.rb: Add defaults for "basename" and "autolist" (neither is
|
3509
|
+
setable/showable yet). mock.rb: Add Debugger::Core mock which reduces bogusness in some
|
3510
|
+
unit tests (proc-validate, proc-frame) file.rb Speaking of bogusness, add parse location routine which
|
3511
|
+
doesn't work yet.
|
3624
3512
|
|
3625
3513
|
2009-09-25 rocky <rockyb@rubyforge.org>
|
3626
3514
|
|
@@ -3652,8 +3540,7 @@
|
|
3652
3540
|
|
3653
3541
|
* interface/base_intf.rb, test/functional/fn_helper.rb,
|
3654
3542
|
test/functional/test-step.rb: base_intf.rb: use only I/O functions
|
3655
|
-
we define. Was missing the newline. More work towards getting
|
3656
|
-
functional testing working.
|
3543
|
+
we define. Was missing the newline. More work towards getting functional testing working.
|
3657
3544
|
|
3658
3545
|
2009-09-24 R. Bernstein <rocky@gnu.org>
|
3659
3546
|
|
@@ -3676,21 +3563,20 @@
|
|
3676
3563
|
* io/input.rb, rbdbgr.rb, test/functional/fn_helper.rb,
|
3677
3564
|
test/unit/test-intf-user.rb, test/unit/test-io-input.rb,
|
3678
3565
|
test/unit/test-user.rb: input.rb: don't assume input has a tty?
|
3679
|
-
method.
|
3680
|
-
descriptors
|
3566
|
+
method. rbdbgr.rb: Allow one to pass in the input and output
|
3567
|
+
descriptors More and better unit tests.
|
3681
3568
|
|
3682
3569
|
2009-09-23 R. Bernstein <rocky@gnu.org>
|
3683
3570
|
|
3684
3571
|
* io/input.rb, test/unit/test-io-input.rb: :line_edit only works if
|
3685
|
-
input is a tty.
|
3572
|
+
input is a tty. Add trivial unit test of io/input.
|
3686
3573
|
|
3687
3574
|
2009-09-23 R. Bernstein <rocky@gnu.org>
|
3688
3575
|
|
3689
3576
|
* interface/script.rb, interface/user.rb, io/input.rb,
|
3690
3577
|
io/string_array.rb, processor/main.rb, test/unit/test-user.rb: Hook
|
3691
3578
|
user/script interfaces to use new IO-based io/input. string_array
|
3692
|
-
now (probably) is usable. main.rb eof is on the interface's input,
|
3693
|
-
not the interface.
|
3579
|
+
now (probably) is usable. main.rb eof is on the interface's input, not the interface.
|
3694
3580
|
|
3695
3581
|
2009-09-23 R. Bernstein <rocky@gnu.org>
|
3696
3582
|
|
@@ -3702,7 +3588,7 @@
|
|
3702
3588
|
|
3703
3589
|
* interface/base_intf.rb, interface/script.rb, interface/user.rb,
|
3704
3590
|
io/base_io.rb, io/input.rb, processor/main.rb: input.rb: closer to
|
3705
|
-
being usuable.
|
3591
|
+
being usuable. main.rb: Add end and unknown as other unmaskable
|
3706
3592
|
events
|
3707
3593
|
|
3708
3594
|
2009-09-23 rocky <rockyb@rubyforge.org>
|
@@ -3745,7 +3631,7 @@
|
|
3745
3631
|
processor/command/source.rb, processor/command/step.rb,
|
3746
3632
|
processor/command/up.rb, processor/command/where.rb,
|
3747
3633
|
processor/mock.rb, processor/subcmd.rb: DRY code with respect to
|
3748
|
-
mock setup.
|
3634
|
+
mock setup. rake :check => :check:lib :check:commands, etc.
|
3749
3635
|
|
3750
3636
|
2009-09-22 rocky <rockyb@rubyforge.org>
|
3751
3637
|
|
@@ -3754,19 +3640,16 @@
|
|
3754
3640
|
processor/command/irb.rb, processor/command/up.rb,
|
3755
3641
|
processor/command/where.rb, processor/frame.rb, processor/main.rb,
|
3756
3642
|
processor/running.rb: Fix bugs in suffix handling for step/next
|
3757
|
-
commands.
|
3758
|
-
figure out the thread, so no need to pass that.
|
3643
|
+
commands. "last position" includes the stack size. frame_setup()
|
3644
|
+
can figure out the thread, so no need to pass that.
|
3759
3645
|
|
3760
3646
|
2009-09-21 rocky <rockyb@rubyforge.org>
|
3761
3647
|
|
3762
3648
|
* processor/command/set_subcmd/events.rb, processor/main.rb,
|
3763
3649
|
processor/msg.rb: Correct process_command_and_quit? to do the right
|
3764
3650
|
thing on interface EOF. Also, it now understands comments and how
|
3765
|
-
to repeat the last command on the empty string. This removes bugs
|
3766
|
-
|
3767
|
-
leaving irb. events.rb: allow commas to end event names, i.e. set
|
3768
|
-
events line, call, return as well as: set events line call return
|
3769
|
-
|
3651
|
+
to repeat the last command on the empty string. This removes bugs in stepping on a "source" command and the
|
3652
|
+
duplicate stepping when leaving irb. events.rb: allow commas to end event names, i.e. set events line, call, return as well as: set events line call return
|
3770
3653
|
|
3771
3654
|
2009-09-21 R. Bernstein <rocky@gnu.org>
|
3772
3655
|
|
@@ -3786,10 +3669,7 @@
|
|
3786
3669
|
processor/mock.rb, processor/running.rb, rbdbgr.rb: Add custom irb
|
3787
3670
|
profile for rbdbgr irb sessions. Running processor/command/irb.rb
|
3788
3671
|
now runs irb which can be used to test the custom profile. Added irb
|
3789
|
-
command 'n' for next. DRY step/next suffix detection code. Set
|
3790
|
-
defaults more for normal users: set autoeval on set events:
|
3791
|
-
remove instruction stepping set different on Did I mention that
|
3792
|
-
"next" now works?
|
3672
|
+
command 'n' for next. DRY step/next suffix detection code. Set defaults more for normal users: set autoeval on set events: remove instruction stepping set different on Did I mention that "next" now works?
|
3793
3673
|
|
3794
3674
|
2009-09-20 rocky <rockyb@rubyforge.org>
|
3795
3675
|
|
@@ -3808,8 +3688,7 @@
|
|
3808
3688
|
* processor/command/base_cmd.rb, processor/command/source.rb,
|
3809
3689
|
processor/command/step.rb, processor/main.rb, processor/mock.rb,
|
3810
3690
|
processor/msg.rb, rbdbgr.rb: Pretty close to having a working
|
3811
|
-
"source" command - needs a little more work on eof condition. To
|
3812
|
-
that end the, interface is now an array of interfaces.
|
3691
|
+
"source" command - needs a little more work on eof condition. To that end the, interface is now an array of interfaces.
|
3813
3692
|
|
3814
3693
|
2009-09-18 rocky <rockyb@rubyforge.org>
|
3815
3694
|
|
@@ -3841,7 +3720,6 @@
|
|
3841
3720
|
processor/running.rb: Add set/show subcommand "set autoirb".
|
3842
3721
|
Separate "running"-category code from the various debugger commands.
|
3843
3722
|
|
3844
|
-
|
3845
3723
|
2009-09-17 rockyb <rocky@gnu.org>
|
3846
3724
|
|
3847
3725
|
* bin/rbdbgr, lib/irb.rb: Use excluded correctly. Disable
|
@@ -3920,7 +3798,7 @@
|
|
3920
3798
|
processor/command/set_subcmd/traceset.rb,
|
3921
3799
|
processor/command/show_subcmd/events.rb,
|
3922
3800
|
processor/command/show_subcmd/traceset.rb: set/show traceset ->
|
3923
|
-
set/show event info line -> info frame
|
3801
|
+
set/show event info line -> info frame Minor other corrections.
|
3924
3802
|
|
3925
3803
|
2009-09-12 rocky <rockyb@rubyforge.org>
|
3926
3804
|
|
@@ -3955,9 +3833,9 @@
|
|
3955
3833
|
processor/command/step.rb, processor/default.rb, processor/main.rb,
|
3956
3834
|
test/unit/test-bin-rbdbgr.rb, test/unit/test-cmd-help.rb,
|
3957
3835
|
test/unit/test-cmd-step.rb: Add ability to step by different
|
3958
|
-
position: set/show different and s[tep]{+,-}. Add unit test for
|
3959
|
-
step
|
3960
|
-
|
3836
|
+
position: set/show different and s[tep]{+,-}. Add unit test for step command which in the process found a bug in
|
3837
|
+
handling "step" as well as showing how to improve unit test for the
|
3838
|
+
help command.
|
3961
3839
|
|
3962
3840
|
2009-09-10 R. Bernstein <rocky@gnu.org>
|
3963
3841
|
|
@@ -3976,7 +3854,7 @@
|
|
3976
3854
|
2009-09-09 rocky <rockyb@rubyforge.org>
|
3977
3855
|
|
3978
3856
|
* Rakefile, bin/rbdbgr: rbdbgr: Set restart args correclty. I have a
|
3979
|
-
feeling I will be using this a lot.
|
3857
|
+
feeling I will be using this a lot. Rakefile: start work to make a
|
3980
3858
|
gem. Doesn't work yet though.
|
3981
3859
|
|
3982
3860
|
2009-09-09 rocky <rockyb@rubyforge.org>
|
@@ -3986,20 +3864,17 @@
|
|
3986
3864
|
processor/command/base_subsubmgr.rb,
|
3987
3865
|
processor/command/show_subcmd/trace.rb, processor/main.rb,
|
3988
3866
|
processor/mock.rb: rbdbgr: save/set/restore $0. Exclude
|
3989
|
-
|
3990
|
-
|
3991
|
-
|
3992
|
-
ugly instance_variable_get's.
|
3867
|
+
debug_program. Pass in debugger object. Try using $rbdbgr for
|
3868
|
+
global debugger variable. Start sub commands of sub commands. Not working yet. Define/use some processor attr_reader's to remove ugly
|
3869
|
+
instance_variable_get's.
|
3993
3870
|
|
3994
3871
|
2009-09-09 R. Bernstein <rocky@gnu.org>
|
3995
3872
|
|
3996
3873
|
* Rakefile, processor/command/base_subcmd.rb,
|
3997
3874
|
processor/command/base_submgr.rb, processor/command/kill.rb,
|
3998
3875
|
processor/mock.rb, processor/msg.rb, processor/subcmd.rb, rbdbgr.rb:
|
3999
|
-
Start using user inteface from command processor. Add rake tasks to
|
4000
|
-
|
4001
|
-
check:lib, check:commands, and check:processor). Kill deal with
|
4002
|
-
failed kill via Errno::ESRCH.
|
3876
|
+
Start using user inteface from command processor. Add rake tasks to be able to run all pieces of the debugger
|
3877
|
+
individually (tasks check:lib, check:commands, and check:processor). Kill deal with failed kill via Errno::ESRCH.
|
4003
3878
|
|
4004
3879
|
2009-09-09 rocky <rockyb@rubyforge.org>
|
4005
3880
|
|
@@ -4013,9 +3888,8 @@
|
|
4013
3888
|
2009-09-08 rocky <rockyb@rubyforge.org>
|
4014
3889
|
|
4015
3890
|
* bin/rbdbgr, interface/base_intf.rb, interface/user.rb:
|
4016
|
-
interface/*: DRY code a little
|
4017
|
-
|
4018
|
-
rbdbgr to be loaded/required.
|
3891
|
+
interface/*: DRY code a little bin/rbdbgr: Scope variables better, make routines in rbdbgr more
|
3892
|
+
unit testable partially by allowing rbdbgr to be loaded/required.
|
4019
3893
|
|
4020
3894
|
2009-09-08 R. Bernstein <rocky@gnu.org>
|
4021
3895
|
|
@@ -4025,11 +3899,8 @@
|
|
4025
3899
|
|
4026
3900
|
2009-09-08 rocky <rockyb@rubyforge.org>
|
4027
3901
|
|
4028
|
-
|
4029
|
-
|
4030
|
-
2009-09-08 rocky <rockyb@rubyforge.org>
|
4031
|
-
|
4032
|
-
* Rakefile: Default task for now is test.
|
3902
|
+
* : commit 1920a02cb99f31db9052d194d711d1e0df8670d8 Author: rocky
|
3903
|
+
<rockyb@rubyforge.org> Date: Tue Sep 8 08:02:55 2009 -0400
|
4033
3904
|
|
4034
3905
|
2009-09-08 rocky <rockyb@rubyforge.org>
|
4035
3906
|
|
@@ -4181,8 +4052,8 @@
|
|
4181
4052
|
* emacs/rbdbg-file.el, emacs/rbdbg-loc.el, emacs/rbdbg-lochist.el,
|
4182
4053
|
emacs/rbdbg-track.el, emacs/test/test-loc.el: Pretty much a working
|
4183
4054
|
comint hook. I can't believe how something this simple was made so
|
4184
|
-
complicated. And we don't need no stinking buffer in a location
|
4185
|
-
|
4055
|
+
complicated. And we don't need no stinking buffer in a location object - An Emacs
|
4056
|
+
mark contains a reference to a buffer.
|
4186
4057
|
|
4187
4058
|
2009-08-25 rockyb <rocky@gnu.org>
|
4188
4059
|
|
@@ -4219,8 +4090,7 @@
|
|
4219
4090
|
emacs/rbdbg-lochist.el, emacs/rbdbg-locring.el,
|
4220
4091
|
emacs/test/.gitignore, emacs/test/behave.el,
|
4221
4092
|
emacs/test/test-loc.el, emacs/test/test-locring.el: Start rewriting
|
4222
|
-
Emacs/Debugger interaction code. From scratch. This doesn't do
|
4223
|
-
anything useful yet.
|
4093
|
+
Emacs/Debugger interaction code. From scratch. This doesn't do anything useful yet.
|
4224
4094
|
|
4225
4095
|
2009-08-23 rocky <rockyb@rubyforge.org>
|
4226
4096
|
|
@@ -4247,11 +4117,10 @@
|
|
4247
4117
|
processor/command/show_subcmd/traceset.rb,
|
4248
4118
|
processor/command/show_subcmd/width.rb, processor/command/step.rb,
|
4249
4119
|
processor/command/up.rb, processor/command/where.rb,
|
4250
|
-
processor/mock.rb, rbdbgr.rb: Add a "restart" command. We can now
|
4251
|
-
|
4252
|
-
|
4253
|
-
|
4254
|
-
loops.
|
4120
|
+
processor/mock.rb, rbdbgr.rb: Add a "restart" command. We can now debug debugger commands; debugger writers: eat your heart
|
4121
|
+
out! DRY debugger-command demo code by putting more of the boilerplate
|
4122
|
+
code into mock.rb More demoing done added through the advanced magic
|
4123
|
+
of loops.
|
4255
4124
|
|
4256
4125
|
2009-08-21 rocky <rockyb@rubyforge.org>
|
4257
4126
|
|
@@ -4265,8 +4134,8 @@
|
|
4265
4134
|
|
4266
4135
|
* lib/core.rb, processor/command/disassemble.rb, processor/main.rb:
|
4267
4136
|
core.rb: trace vm instructions - Yeah baby! disassemble.rb: show
|
4268
|
-
|
4269
|
-
message for being in C functions.
|
4137
|
+
disassembly for *anything* that responds to disasm better error
|
4138
|
+
message for being in C functions. main.rb: add more even icons and
|
4270
4139
|
show even when we don't have an icon.
|
4271
4140
|
|
4272
4141
|
2009-08-21 R. Bernstein <rocky@gnu.org>
|
@@ -4280,12 +4149,8 @@
|
|
4280
4149
|
|
4281
4150
|
2009-08-21 R. Bernstein <rocky@gnu.org>
|
4282
4151
|
|
4283
|
-
|
4284
|
-
|
4285
|
-
2009-08-21 R. Bernstein <rocky@gnu.org>
|
4286
|
-
|
4287
|
-
* lib/core.rb, processor/main.rb, rbdbgr.rb: Add more icons. And a
|
4288
|
-
class test.
|
4152
|
+
* : commit 3696fa2f4dbc70e7a81e12dc5194d77208bb3de6 Author: R.
|
4153
|
+
Bernstein <rocky@gnu.org> Date: Fri Aug 21 09:20:29 2009 -0400
|
4289
4154
|
|
4290
4155
|
2009-08-20 rocky <rockyb@rubyforge.org>
|
4291
4156
|
|
@@ -4297,7 +4162,7 @@
|
|
4297
4162
|
|
4298
4163
|
* lib/core.rb, rbdbgr.rb: Add event after debugger-call debugging.
|
4299
4164
|
Don't show stopping points inside debugger method for when
|
4300
|
-
:immediate => true
|
4165
|
+
:immediate => true It's almost looking like a real debugger.
|
4301
4166
|
|
4302
4167
|
2009-08-18 rocky <rockyb@rubyforge.org>
|
4303
4168
|
|
@@ -4309,7 +4174,6 @@
|
|
4309
4174
|
|
4310
4175
|
* processor/command/step.rb: Add step command - this time, for sure!
|
4311
4176
|
|
4312
|
-
|
4313
4177
|
2009-08-18 rocky <rockyb@rubyforge.org>
|
4314
4178
|
|
4315
4179
|
* lib/core.rb, processor/command/continue.rb,
|
@@ -4382,7 +4246,7 @@
|
|
4382
4246
|
processor/msg.rb, processor/validate.rb, rbdbgr.rb,
|
4383
4247
|
test/unit/test-proc-validate.rb: Add a 'kill' command - don't know
|
4384
4248
|
how I lived this long without it! Add confirm method. Use full
|
4385
|
-
sentences in command messages.
|
4249
|
+
sentences in command messages. Start testing validation routines.
|
4386
4250
|
Nuke trace hook until I figure out the garbage collection segv. I'll
|
4387
4251
|
be back!
|
4388
4252
|
|
@@ -4398,14 +4262,8 @@
|
|
4398
4262
|
|
4399
4263
|
2009-08-08 rocky <rockyb@rubyforge.org>
|
4400
4264
|
|
4401
|
-
|
4402
|
-
|
4403
|
-
|
4404
|
-
2009-08-12 rocky <rockyb@rubyforge.org>
|
4405
|
-
|
4406
|
-
* processor/command/exit.rb, processor/command/help.rb,
|
4407
|
-
processor/command/where.rb, processor/main.rb,
|
4408
|
-
test/unit/test-proc-main.rb: I hate conflicted merges
|
4265
|
+
* : commit 0fedb641a33656b55f2020340f21872a3160c529 Author: rocky
|
4266
|
+
<rockyb@rubyforge.org> Date: Wed Aug 12 20:22:52 2009 -0400
|
4409
4267
|
|
4410
4268
|
2009-08-08 rocky <rockyb@rubyforge.org>
|
4411
4269
|
|
@@ -4415,15 +4273,8 @@
|
|
4415
4273
|
|
4416
4274
|
2009-08-08 rocky <rockyb@rubyforge.org>
|
4417
4275
|
|
4418
|
-
|
4419
|
-
|
4420
|
-
processor/command/where.rb processor/main.rb
|
4421
|
-
test/unit/test-proc-main.rb
|
4422
|
-
|
4423
|
-
2009-08-12 R. Bernstein <rocky@gnu.org>
|
4424
|
-
|
4425
|
-
* processor/command/base_subcmd.rb: Playing switch-board operator.
|
4426
|
-
You know, delegation not inheritance
|
4276
|
+
* : commit cdcfba71a1e69d3158faa475f4f616287bb2afb3 Author: R.
|
4277
|
+
Bernstein <rocky@gnu.org> Date: Wed Aug 12 13:06:18 2009 -0400
|
4427
4278
|
|
4428
4279
|
2009-08-12 rockyb <rocky@gnu.org>
|
4429
4280
|
|
@@ -4463,7 +4314,7 @@
|
|
4463
4314
|
processor/command/set_subcmd/width.rb,
|
4464
4315
|
processor/command/show_subcmd/.gitignore, processor/main.rb:
|
4465
4316
|
Debugger::Subcommand is a subclass of Debugger::Command - DRYs code
|
4466
|
-
a little bit.
|
4317
|
+
a little bit. Add undefined command message used when set autoeval
|
4467
4318
|
is off.
|
4468
4319
|
|
4469
4320
|
2009-08-08 rocky <rockyb@rubyforge.org>
|
@@ -4567,7 +4418,7 @@
|
|
4567
4418
|
processor/main.rb, processor/mock.rb, rbdbgr.rb,
|
4568
4419
|
test/unit/test-cmd-help.rb, test/unit/test-cmdproc.rb,
|
4569
4420
|
test/unit/test-proc-main.rb: Separate Debugger, Debugger::Core and
|
4570
|
-
Debugger::CmdProcessor settings.
|
4421
|
+
Debugger::CmdProcessor settings. Fix bugs in "where" command. Add
|
4571
4422
|
ruby-debug stack_trace_on_error option.
|
4572
4423
|
|
4573
4424
|
2009-08-05 rocky <rockyb@rubyforge.org>
|
@@ -4577,10 +4428,8 @@
|
|
4577
4428
|
processor/command/where.rb, processor/mock.rb,
|
4578
4429
|
processor/validate.rb, rbdbgr.rb, test/unit/test-proc-frame.rb: Add
|
4579
4430
|
access to (top-)level debugger settings - help uses "width" setting
|
4580
|
-
of this now. Start a mock Debugger to help runing/testing
|
4581
|
-
|
4582
|
-
"where" now sets a max int value. Probably some other things as
|
4583
|
-
well. Whew.
|
4431
|
+
of this now. Start a mock Debugger to help runing/testing individual commands
|
4432
|
+
standalone. Fix bugs in get_int of validate. "where" now sets a max int value. Probably some other things as well. Whew.
|
4584
4433
|
|
4585
4434
|
2009-08-04 rocky <rockyb@rubyforge.org>
|
4586
4435
|
|
@@ -4595,7 +4444,7 @@
|
|
4595
4444
|
processor/command/help.rb, processor/command/up.rb,
|
4596
4445
|
processor/command/where.rb: API change requires that we can no
|
4597
4446
|
longer create a Debugger::Core object without a Debugger object.
|
4598
|
-
Adjust command standalone demo for this.
|
4447
|
+
Adjust command standalone demo for this. Todo: create a common mock
|
4599
4448
|
helper module.
|
4600
4449
|
|
4601
4450
|
2009-08-04 rocky <rockyb@rubyforge.org>
|
@@ -4605,9 +4454,8 @@
|
|
4605
4454
|
processor/frame.rb, rbdbgr.rb, test/unit/test-cmd-help.rb,
|
4606
4455
|
test/unit/test-cmdproc.rb, test/unit/test-proc-frame.rb: Bug fix for
|
4607
4456
|
negative positioning in frame command. help doc corrections in
|
4608
|
-
up/down. Start adding debugger settings. In doing so we also start
|
4609
|
-
|
4610
|
-
|
4457
|
+
up/down. Start adding debugger settings. In doing so we also start start
|
4458
|
+
linking together core, command_processor and debugger objects.
|
4611
4459
|
|
4612
4460
|
2009-08-03 rocky <rockyb@rubyforge.org>
|
4613
4461
|
|
@@ -4669,8 +4517,7 @@
|
|
4669
4517
|
2009-07-30 rocky <rockyb@rubyforge.org>
|
4670
4518
|
|
4671
4519
|
* lib/frame.rb: Don't use ThreadFrame#caller_method but
|
4672
|
-
eval('self.class', frame.binding) instead. Add stack frame numbers
|
4673
|
-
to stack listing.
|
4520
|
+
eval('self.class', frame.binding) instead. Add stack frame numbers to stack listing.
|
4674
4521
|
|
4675
4522
|
2009-07-28 rocky <rockyb@rubyforge.org>
|
4676
4523
|
|
@@ -4697,7 +4544,7 @@
|
|
4697
4544
|
|
4698
4545
|
* processor/cmdproc.rb, processor/command/help.rb,
|
4699
4546
|
processor/command/where.rb: Get "where" command to a point where it
|
4700
|
-
is minimally useful.
|
4547
|
+
is minimally useful. Start "help" command.
|
4701
4548
|
|
4702
4549
|
2009-07-25 rocky <rockyb@rubyforge.org>
|
4703
4550
|
|
@@ -4726,10 +4573,10 @@
|
|
4726
4573
|
* lib/core.rb, lib/frame.rb, lib/stack.rb, processor/cmdproc.rb,
|
4727
4574
|
processor/command/base_cmd.rb, processor/command/exit.rb,
|
4728
4575
|
processor/command/where.rb, rbdbgr.rb: where.rb: now to the state
|
4729
|
-
where it does something remotely useful.
|
4576
|
+
where it does something remotely useful. process_command_and_quit?
|
4730
4577
|
doesn't try to run a comand after running it cmdproc.rb: set up
|
4731
|
-
access from commmand to core and itself.
|
4732
|
-
method.
|
4578
|
+
access from commmand to core and itself. rbdbgr.rb: add debugger()
|
4579
|
+
method. exit.rb: fix bug in calling exit without args.
|
4733
4580
|
|
4734
4581
|
2009-07-18 rocky <rockyb@rubyforge.org>
|
4735
4582
|
|
@@ -4794,4 +4641,3 @@
|
|
4794
4641
|
|
4795
4642
|
* Baby steps toward a real debugger. Hah - Florian, I beat you to it!
|
4796
4643
|
|
4797
|
-
|