debugger 1.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +10 -0
- data/CHANGES +334 -0
- data/ChangeLog +5655 -0
- data/INSTALL.SVN +154 -0
- data/LICENSE +23 -0
- data/Makefile.am +14 -0
- data/OLD_README +122 -0
- data/README.md +10 -0
- data/Rakefile +266 -0
- data/autogen.sh +4 -0
- data/bin/rdebug +398 -0
- data/cli/ruby-debug.rb +173 -0
- data/cli/ruby-debug/command.rb +228 -0
- data/cli/ruby-debug/commands/breakpoints.rb +153 -0
- data/cli/ruby-debug/commands/catchpoint.rb +55 -0
- data/cli/ruby-debug/commands/condition.rb +49 -0
- data/cli/ruby-debug/commands/continue.rb +38 -0
- data/cli/ruby-debug/commands/control.rb +107 -0
- data/cli/ruby-debug/commands/display.rb +120 -0
- data/cli/ruby-debug/commands/edit.rb +48 -0
- data/cli/ruby-debug/commands/enable.rb +202 -0
- data/cli/ruby-debug/commands/eval.rb +176 -0
- data/cli/ruby-debug/commands/finish.rb +42 -0
- data/cli/ruby-debug/commands/frame.rb +301 -0
- data/cli/ruby-debug/commands/help.rb +56 -0
- data/cli/ruby-debug/commands/info.rb +467 -0
- data/cli/ruby-debug/commands/irb.rb +123 -0
- data/cli/ruby-debug/commands/jump.rb +66 -0
- data/cli/ruby-debug/commands/kill.rb +51 -0
- data/cli/ruby-debug/commands/list.rb +94 -0
- data/cli/ruby-debug/commands/method.rb +84 -0
- data/cli/ruby-debug/commands/quit.rb +39 -0
- data/cli/ruby-debug/commands/reload.rb +40 -0
- data/cli/ruby-debug/commands/save.rb +90 -0
- data/cli/ruby-debug/commands/set.rb +221 -0
- data/cli/ruby-debug/commands/show.rb +247 -0
- data/cli/ruby-debug/commands/skip.rb +35 -0
- data/cli/ruby-debug/commands/source.rb +36 -0
- data/cli/ruby-debug/commands/stepping.rb +81 -0
- data/cli/ruby-debug/commands/threads.rb +189 -0
- data/cli/ruby-debug/commands/tmate.rb +36 -0
- data/cli/ruby-debug/commands/trace.rb +57 -0
- data/cli/ruby-debug/commands/variables.rb +199 -0
- data/cli/ruby-debug/debugger.rb +5 -0
- data/cli/ruby-debug/helper.rb +69 -0
- data/cli/ruby-debug/interface.rb +232 -0
- data/cli/ruby-debug/processor.rb +474 -0
- data/configure.ac +12 -0
- data/debugger.gemspec +24 -0
- data/doc/.cvsignore +42 -0
- data/doc/Makefile.am +63 -0
- data/doc/emacs-notes.txt +38 -0
- data/doc/hanoi.rb +35 -0
- data/doc/primes.rb +28 -0
- data/doc/rdebug-emacs.texi +1030 -0
- data/doc/rdebug.1 +241 -0
- data/doc/ruby-debug.texi +3791 -0
- data/doc/test-tri2.rb +18 -0
- data/doc/tri3.rb +8 -0
- data/doc/triangle.rb +12 -0
- data/emacs/Makefile.am +130 -0
- data/emacs/rdebug-annotate.el +385 -0
- data/emacs/rdebug-breaks.el +407 -0
- data/emacs/rdebug-cmd.el +92 -0
- data/emacs/rdebug-core.el +502 -0
- data/emacs/rdebug-dbg.el +62 -0
- data/emacs/rdebug-error.el +79 -0
- data/emacs/rdebug-fns.el +111 -0
- data/emacs/rdebug-frames.el +230 -0
- data/emacs/rdebug-gud.el +242 -0
- data/emacs/rdebug-help.el +104 -0
- data/emacs/rdebug-info.el +83 -0
- data/emacs/rdebug-layouts.el +180 -0
- data/emacs/rdebug-locring.el +118 -0
- data/emacs/rdebug-output.el +106 -0
- data/emacs/rdebug-regexp.el +118 -0
- data/emacs/rdebug-secondary.el +260 -0
- data/emacs/rdebug-shortkey.el +175 -0
- data/emacs/rdebug-source.el +568 -0
- data/emacs/rdebug-track.el +392 -0
- data/emacs/rdebug-varbuf.el +150 -0
- data/emacs/rdebug-vars.el +125 -0
- data/emacs/rdebug-watch.el +132 -0
- data/emacs/rdebug.el +326 -0
- data/emacs/test/elk-test.el +242 -0
- data/emacs/test/test-annotate.el +103 -0
- data/emacs/test/test-cmd.el +116 -0
- data/emacs/test/test-core.el +104 -0
- data/emacs/test/test-fns.el +65 -0
- data/emacs/test/test-frames.el +62 -0
- data/emacs/test/test-gud.el +35 -0
- data/emacs/test/test-indent.el +58 -0
- data/emacs/test/test-regexp.el +144 -0
- data/emacs/test/test-shortkey.el +61 -0
- data/ext/ruby_debug/breakpoint.c +586 -0
- data/ext/ruby_debug/extconf.rb +49 -0
- data/ext/ruby_debug/ruby_debug.c +2624 -0
- data/ext/ruby_debug/ruby_debug.h +148 -0
- data/lib/ChangeLog +1065 -0
- data/lib/debugger.rb +7 -0
- data/lib/debugger/version.rb +3 -0
- data/lib/ruby-debug-base.rb +304 -0
- data/rdbg.rb +33 -0
- data/runner.sh +7 -0
- data/svn2cl_usermap +3 -0
- data/test/.cvsignore +1 -0
- data/test/base/base.rb +74 -0
- data/test/base/binding.rb +31 -0
- data/test/base/catchpoint.rb +26 -0
- data/test/base/load.rb +40 -0
- data/test/bp_loop_issue.rb +3 -0
- data/test/classes.rb +11 -0
- data/test/cli/commands/catchpoint_test.rb +36 -0
- data/test/cli/commands/unit/regexp.rb +42 -0
- data/test/config.yaml +8 -0
- data/test/data/annotate.cmd +29 -0
- data/test/data/annotate.right +139 -0
- data/test/data/break_bad.cmd +18 -0
- data/test/data/break_bad.right +28 -0
- data/test/data/break_loop_bug.cmd +5 -0
- data/test/data/break_loop_bug.right +15 -0
- data/test/data/breakpoints.cmd +38 -0
- data/test/data/breakpoints.right +98 -0
- data/test/data/catch.cmd +20 -0
- data/test/data/catch.right +49 -0
- data/test/data/catch2.cmd +19 -0
- data/test/data/catch2.right +65 -0
- data/test/data/catch3.cmd +11 -0
- data/test/data/catch3.right +37 -0
- data/test/data/condition.cmd +28 -0
- data/test/data/condition.right +65 -0
- data/test/data/ctrl.cmd +23 -0
- data/test/data/ctrl.right +70 -0
- data/test/data/display.cmd +24 -0
- data/test/data/display.right +44 -0
- data/test/data/dollar-0.right +2 -0
- data/test/data/dollar-0a.right +2 -0
- data/test/data/dollar-0b.right +2 -0
- data/test/data/edit.cmd +12 -0
- data/test/data/edit.right +19 -0
- data/test/data/emacs_basic.cmd +43 -0
- data/test/data/emacs_basic.right +106 -0
- data/test/data/enable.cmd +20 -0
- data/test/data/enable.right +36 -0
- data/test/data/finish.cmd +16 -0
- data/test/data/finish.right +31 -0
- data/test/data/frame.cmd +26 -0
- data/test/data/frame.right +55 -0
- data/test/data/help.cmd +20 -0
- data/test/data/help.right +21 -0
- data/test/data/history.right +7 -0
- data/test/data/info-thread.cmd +13 -0
- data/test/data/info-thread.right +37 -0
- data/test/data/info-var-bug2.cmd +5 -0
- data/test/data/info-var-bug2.right +10 -0
- data/test/data/info-var.cmd +23 -0
- data/test/data/info-var.right +52 -0
- data/test/data/info.cmd +21 -0
- data/test/data/info.right +65 -0
- data/test/data/jump.cmd +16 -0
- data/test/data/jump.right +56 -0
- data/test/data/jump2.cmd +16 -0
- data/test/data/jump2.right +44 -0
- data/test/data/linetrace.cmd +6 -0
- data/test/data/linetrace.right +23 -0
- data/test/data/list.cmd +19 -0
- data/test/data/list.right +127 -0
- data/test/data/method.cmd +10 -0
- data/test/data/method.right +21 -0
- data/test/data/methodsig.cmd +10 -0
- data/test/data/methodsig.right +20 -0
- data/test/data/next.cmd +22 -0
- data/test/data/next.right +61 -0
- data/test/data/noquit.right +1 -0
- data/test/data/output.cmd +6 -0
- data/test/data/output.right +31 -0
- data/test/data/pm-bug.cmd +7 -0
- data/test/data/pm-bug.right +12 -0
- data/test/data/post-mortem-next.cmd +8 -0
- data/test/data/post-mortem-next.right +14 -0
- data/test/data/post-mortem-osx.right +31 -0
- data/test/data/post-mortem.cmd +13 -0
- data/test/data/post-mortem.right +32 -0
- data/test/data/quit.cmd +6 -0
- data/test/data/quit.right +0 -0
- data/test/data/raise.cmd +11 -0
- data/test/data/raise.right +23 -0
- data/test/data/save.cmd +34 -0
- data/test/data/save.right +59 -0
- data/test/data/scope-var.cmd +42 -0
- data/test/data/scope-var.right +587 -0
- data/test/data/setshow.cmd +56 -0
- data/test/data/setshow.right +98 -0
- data/test/data/source.cmd +5 -0
- data/test/data/source.right +15 -0
- data/test/data/stepping.cmd +21 -0
- data/test/data/stepping.right +50 -0
- data/test/data/test-init-cygwin.right +7 -0
- data/test/data/test-init-osx.right +4 -0
- data/test/data/test-init.right +5 -0
- data/test/data/trace.right +14 -0
- data/test/dollar-0.rb +5 -0
- data/test/gcd-dbg-nox.rb +31 -0
- data/test/gcd-dbg.rb +30 -0
- data/test/gcd.rb +18 -0
- data/test/helper.rb +144 -0
- data/test/info-var-bug.rb +47 -0
- data/test/info-var-bug2.rb +2 -0
- data/test/jump.rb +14 -0
- data/test/jump2.rb +27 -0
- data/test/next.rb +18 -0
- data/test/null.rb +1 -0
- data/test/output.rb +2 -0
- data/test/pm-base.rb +22 -0
- data/test/pm-bug.rb +3 -0
- data/test/pm-catch.rb +12 -0
- data/test/pm-catch2.rb +27 -0
- data/test/pm-catch3.rb +47 -0
- data/test/pm.rb +11 -0
- data/test/raise.rb +3 -0
- data/test/rdebug-save.1 +7 -0
- data/test/runall +12 -0
- data/test/scope-var.rb +29 -0
- data/test/tdebug.rb +248 -0
- data/test/test-annotate.rb +25 -0
- data/test/test-break-bad.rb +37 -0
- data/test/test-breakpoints.rb +25 -0
- data/test/test-catch.rb +25 -0
- data/test/test-catch2.rb +25 -0
- data/test/test-catch3.rb +25 -0
- data/test/test-condition.rb +25 -0
- data/test/test-ctrl.rb +55 -0
- data/test/test-display.rb +26 -0
- data/test/test-dollar-0.rb +40 -0
- data/test/test-edit.rb +26 -0
- data/test/test-emacs-basic.rb +26 -0
- data/test/test-enable.rb +25 -0
- data/test/test-finish.rb +34 -0
- data/test/test-frame.rb +34 -0
- data/test/test-help.rb +60 -0
- data/test/test-hist.rb +68 -0
- data/test/test-info-thread.rb +32 -0
- data/test/test-info-var.rb +47 -0
- data/test/test-info.rb +26 -0
- data/test/test-init.rb +44 -0
- data/test/test-jump.rb +35 -0
- data/test/test-list.rb +25 -0
- data/test/test-method.rb +34 -0
- data/test/test-next.rb +25 -0
- data/test/test-output.rb +26 -0
- data/test/test-quit.rb +30 -0
- data/test/test-raise.rb +25 -0
- data/test/test-save.rb +31 -0
- data/test/test-scope-var.rb +25 -0
- data/test/test-setshow.rb +25 -0
- data/test/test-source.rb +25 -0
- data/test/test-stepping.rb +26 -0
- data/test/test-trace.rb +47 -0
- data/test/thread1.rb +26 -0
- data/test/trunc-call.rb +31 -0
- metadata +364 -0
data/AUTHORS
ADDED
data/CHANGES
ADDED
@@ -0,0 +1,334 @@
|
|
1
|
+
0.10.3
|
2
|
+
11/17/08
|
3
|
+
|
4
|
+
- a backtrace now warns when it thinks the callstack is truncated which it
|
5
|
+
gets by comparing with caller()
|
6
|
+
- fix setting $0.
|
7
|
+
- fix bug in showing variables in post-mortem
|
8
|
+
- Document how Debugger.start with a block is intended to be used.
|
9
|
+
- Move Kernel#debugger from ruby-debug-base into ruby-debug
|
10
|
+
- Get regression tests working again
|
11
|
+
- Warn and add a "confirmation" when setting a breakpoint on a
|
12
|
+
file that is not loaded.
|
13
|
+
|
14
|
+
0.10.2
|
15
|
+
- debugger(steps=0) breaks inside of debugger rather than wait for a line event.
|
16
|
+
- trace var varname (stop|nostop) added which issues trace_var.
|
17
|
+
- start method is now properly defined in Debugger module
|
18
|
+
- fixed 'finish' command
|
19
|
+
- rdebug script now works with Ruby 1.8.7
|
20
|
+
|
21
|
+
0.10.1
|
22
|
+
4/10/08 - in honor of the 30th Birthday of Kate Schwarz
|
23
|
+
|
24
|
+
- bin/rdebug
|
25
|
+
|
26
|
+
* "rdebug --post-mortem" now really catches uncaught exceptions and
|
27
|
+
brings you to post-mortem handling. "info program" shows the exception.
|
28
|
+
|
29
|
+
* rdebug now searches using ENV['PATH'] for a Ruby program to debug
|
30
|
+
if the program name is not found and doesn't have any path
|
31
|
+
characters in it.
|
32
|
+
|
33
|
+
* Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options.
|
34
|
+
|
35
|
+
* --emacs is now --emacs-basic while --emacs 3 now implies emacs-basic
|
36
|
+
---annotate=3 --post-mortem --no-control --no-start --no-quit
|
37
|
+
|
38
|
+
- rdebug (CLI)
|
39
|
+
|
40
|
+
* "info" command additions and changes:
|
41
|
+
o fix bug in "info variables" when string had embedded %s'
|
42
|
+
o "info program" now shows uncaught exception information
|
43
|
+
o "info files" show what Ruby files are loaded
|
44
|
+
o "info file <f>" specific file information of <f> (e.g. time, # of lines, SHA1)
|
45
|
+
o "info catch" - Exceptions that can be caught in the current stack frame.
|
46
|
+
o "info "variables" shows "self" and class variables
|
47
|
+
o "info threads verbose" shows stack trace of all threads
|
48
|
+
o "info thread <t> verbose" shows stack trace of thread <t>.
|
49
|
+
|
50
|
+
* "frame" command now accepts an optional thread number argument
|
51
|
+
|
52
|
+
* Long information added to commands with subcommands: show, set,
|
53
|
+
info, enable, and disable. For example "help info <xxx>" will give
|
54
|
+
more detailed information about the "info <xxx>" command.
|
55
|
+
|
56
|
+
* columnize now pulled in from a separate package.
|
57
|
+
|
58
|
+
* add "var cl[ass]" command. Note "var const" can no longer be
|
59
|
+
abbreviated "var c"; use "var co" (or const or constant).
|
60
|
+
|
61
|
+
* add "condition" command. Allow removal of condition.
|
62
|
+
|
63
|
+
* $0 == __FILE__ when running rdebug should work -- most of the
|
64
|
+
time. See comments in code for a better solution.
|
65
|
+
|
66
|
+
* rdebug command history can be displayed with "show commands". Fix a bug
|
67
|
+
in history saving.
|
68
|
+
|
69
|
+
* INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most
|
70
|
+
recent method finishes. Will now accept a number which stops that many
|
71
|
+
frames completed. (Note that return line numbers will be funny, the
|
72
|
+
first line of the method until Ruby 1.8.7.)
|
73
|
+
|
74
|
+
* fix bug in 'list' command when wrapping off the end.
|
75
|
+
|
76
|
+
- Emacs interaction drastically reworked, expanded, and improved.
|
77
|
+
|
78
|
+
- rdebug base
|
79
|
+
* allow catching multiple exceptions.
|
80
|
+
INCOMPATIBLE CHANGE: variable "Debugger.catchpoint", a String, was turned
|
81
|
+
into "Debugger.catchpoints", a Hash. Method "Debugger.catchpoint=" no
|
82
|
+
longer exists. Debugger.set_catchpoint was turned into
|
83
|
+
Debugger.add_catchpoint
|
84
|
+
|
85
|
+
* Add Debugger.last_exception which is set in post-mortem.
|
86
|
+
|
87
|
+
* remove Debugger.stop() when an exception is raised that would terminate the
|
88
|
+
debugged program. This may allow catchpoints to work and allow tracing user
|
89
|
+
code which handles "Exit" exceptions
|
90
|
+
|
91
|
+
* split off breakpoint code in ruby_debug.c.
|
92
|
+
|
93
|
+
* preface ruby_debug global Ruby variables with rdebug_.
|
94
|
+
|
95
|
+
* Change Debugger.start() to accept an optional options argument
|
96
|
+
:init => true saves things (like $0 and ARGV) necessary to
|
97
|
+
allow restart. Default: true
|
98
|
+
:post_mortem => true runs post-mortem on an uncaught exception
|
99
|
+
Default: false
|
100
|
+
|
101
|
+
The old Debugger.start() is now renamed to Debugger.start_()
|
102
|
+
|
103
|
+
* split of line caching to an external gem. We now only allow setting
|
104
|
+
breakpoints on lines where it makes sense to do so.
|
105
|
+
|
106
|
+
* Incompatible enhancement: even return/end will now call event handler
|
107
|
+
|
108
|
+
See ChangeLog for full details, and the reference guide for more complete
|
109
|
+
documentation of these changes.
|
110
|
+
|
111
|
+
0.10.0
|
112
|
+
12/25/07
|
113
|
+
|
114
|
+
- '-r' option can be used to require additional libraries.
|
115
|
+
- --noquit option added to stay in debugger when the program exits
|
116
|
+
- gdb-like --annotate option added. Can be used by front-ends to get information
|
117
|
+
without polling
|
118
|
+
- Fixed 'var const' command. Issue #10847.
|
119
|
+
- Using pretty-print for all var commands.
|
120
|
+
- Better error reporting for commands that require a numeric argument.
|
121
|
+
- Fixed Kernel#binding_n method
|
122
|
+
- Add option -d ($DEBUG = true) and --verbose. Make -v work like ruby.
|
123
|
+
- Remove debugger messages caused when warnings are turned on.
|
124
|
+
- "info" and "show" commands added. "set" made more like gdb's
|
125
|
+
set. subcommands can be abbreviated and are case insensitive.
|
126
|
+
- restart program if it terminates normally and we've got a tty and
|
127
|
+
we stop on the first statement.
|
128
|
+
- help is in tidy column format. method lists are shown that way as well.
|
129
|
+
the "width" setting ("set/show width") is used for the line width
|
130
|
+
- stack traces now show parameter names and types. "info args" lists just
|
131
|
+
the parameters (with the most recent values, not the values at call time).
|
132
|
+
- post-mortem "exit" bug fixed.
|
133
|
+
- More Emacs-friendly: rdebug-track.el will track location inside an Emacs
|
134
|
+
shell. Emacs position information is shown in breakpoints and catchpoints
|
135
|
+
similar to gdba. Commands to position in another window a unit test traceback
|
136
|
+
or ruby traceback. Much more work invisioned for Emacs.
|
137
|
+
- INCOMPATIBLE CHANGE: "break" now sets a breakpoint on the current line
|
138
|
+
(same as gdb). Use "info break" for a list of breakpoints.
|
139
|
+
- INCOMPATIBLE CHANGE: "script" command removed. Use "source" command instead
|
140
|
+
(same as gdb).
|
141
|
+
- Run .rdebugrc on Debugger.start. Look for a file in the current directory and
|
142
|
+
run that instead of the one in $HOME if that exists. Again, inspired by and compatible
|
143
|
+
with gdb.
|
144
|
+
- Changes compatible with Ruby 1.9. NOTE: this debugger will NOT work with
|
145
|
+
Ruby 1.9
|
146
|
+
- leaving irb shows position same as entering debugger; "list" position
|
147
|
+
is also cleared when leaving irb
|
148
|
+
- help "foo" gives message "Undefined command "foo" rather than a list
|
149
|
+
of help commands. (Message test is gdb's)
|
150
|
+
- Add set linetrace+ - similar to step+ for linetrace
|
151
|
+
- Start unit tests.
|
152
|
+
- Start a reference guide.
|
153
|
+
|
154
|
+
0.9.3
|
155
|
+
- Fixed if..elsif..end stepping.
|
156
|
+
- From irb session Ctrl-C or 'cont' command continues execution without showing the debugger prompt.
|
157
|
+
- Added Debugger.settings method to programatically modify command settings.
|
158
|
+
- Added Kernel#breakpoint as alias to Kernel#debugger is the former is not already defined.
|
159
|
+
|
160
|
+
0.9.2
|
161
|
+
- Fixed file comparison in Windows platform.
|
162
|
+
- Added setter methods to Breakpoint properties
|
163
|
+
- Added breakpoint hit condition functionality (not available via CLI yet) and methods:
|
164
|
+
Breakpoint:hit_count
|
165
|
+
Breakpoint:hit_value[=]
|
166
|
+
Breakpoint:hit_condition[=]
|
167
|
+
|
168
|
+
0.9.1
|
169
|
+
- Fixed incorrect stack calculation.
|
170
|
+
- Context#stop_next= method aliased as Context#step.
|
171
|
+
- Added the 'force' parameter to Context#step_over.
|
172
|
+
- Added the 'force' parameter to Context#step.
|
173
|
+
- 'next+/step+' commands forces to move to another line
|
174
|
+
- Added a new 'forcestep' setting.
|
175
|
+
|
176
|
+
0.9
|
177
|
+
- Kernel#debugger method will start the debugger if it's not running.
|
178
|
+
- Added Context#stop_reason method.
|
179
|
+
- Calling a method with a block will create a new frame. This changes the behavior of 'next' command. So in order to step into a block, 'step' command must be used. That fixes bug #9629.
|
180
|
+
- Added the possibility to add a temporary context-specific breakpoint. Context#breakpoint and Context#set_breakpoint methods are added.
|
181
|
+
- 'cont' command now accepts a numerical parameter which implements 'Continue until line' behavior.
|
182
|
+
- Added new Context.frame_class method
|
183
|
+
- Added new 'framefullpath' setting.
|
184
|
+
- Added new 'frameclassname' setting.
|
185
|
+
- All Ruby's 'eval' and require/load methods create a new frame. Fixes bug #9686.
|
186
|
+
|
187
|
+
0.8.1
|
188
|
+
- Added a shortcut module 'debugger'. require "ruby-debug/debugger" will start the debugger and stop at the next line (similar to require 'debug').
|
189
|
+
- Fixed remote debugging.
|
190
|
+
|
191
|
+
0.8
|
192
|
+
- Extract the base debugger API into a separate gem (ruby-debug-base), so it will be easier to add a new interface.
|
193
|
+
- Added 'set autoirb' setting.
|
194
|
+
- Bugfixes.
|
195
|
+
|
196
|
+
0.7.5
|
197
|
+
- Fixed 'reload on' command
|
198
|
+
- 'reload on' command is removed in favor of 'set autoreload'
|
199
|
+
- rdebug will evaluate ~/.rdebugrc script on startup
|
200
|
+
|
201
|
+
0.7.4
|
202
|
+
- Added a workaround of the Ruby interpreter problem where a method created with Module#define_method
|
203
|
+
and which raises an exception doesn't trigger a :return event, this way screwing the stack trace.
|
204
|
+
- Fixed a situation of an array 'out of bounds' access.
|
205
|
+
- Fixed the help for 'where' command.
|
206
|
+
|
207
|
+
0.7.3
|
208
|
+
- Fixed a case when a frame is not popped up properly.
|
209
|
+
- Removed Context.ignore= method, since it can result with the segmentation fault error.
|
210
|
+
- Fixed the case when Context#suspend may effect the state of the thread on Context#resume
|
211
|
+
- Fixed several cases of seg faults when accessing dyna_vars structure.
|
212
|
+
|
213
|
+
0.7.2
|
214
|
+
- Fixed Context#resume (a thread should be waked up only when it was running when it was suspended).
|
215
|
+
- When handling post-mortem exception, all threads must be suspended.
|
216
|
+
|
217
|
+
0.7.1
|
218
|
+
- Fixed 'delete' command
|
219
|
+
|
220
|
+
0.7
|
221
|
+
- Eliminated explicit Frame object. Use Context.frame_[binding,file,line] instead.
|
222
|
+
- Fixed help command.
|
223
|
+
- Renamed Debugger.keep_frame_info to Debugger.keep_frame_binding
|
224
|
+
- 'eval' command is available, even when keep_frame_binding is not used.
|
225
|
+
- New 'set' command is available.
|
226
|
+
|
227
|
+
0.6.2
|
228
|
+
- Added thread lookup cache.
|
229
|
+
- Control thread is always started by rdebug script.
|
230
|
+
- Ability to specify negative frame number to frame commands. Patch from R. Bernstein.
|
231
|
+
|
232
|
+
0.6.1
|
233
|
+
- Another performance optimization.
|
234
|
+
|
235
|
+
0.6
|
236
|
+
- Added option to exclude collecting of frame bindings.
|
237
|
+
- Several performance optimizations.
|
238
|
+
|
239
|
+
0.5.4
|
240
|
+
- Added -x/--trace option to rdebug script. Patch from R. Bernstein.
|
241
|
+
- Removed a live thread reference from the context's structure avoiding memory leakage.
|
242
|
+
|
243
|
+
0.5.3
|
244
|
+
- Added Module#post_mortem_method method, which wraps any method with Debugger.post_mortem block.
|
245
|
+
- Added breakpoint id, which is not dependent on the breakpoint position in Debugger.breakpoints array.
|
246
|
+
|
247
|
+
0.5.2
|
248
|
+
- Fixes interoperability problems with rspec.
|
249
|
+
- Made 'exit' as an alias to 'quit'
|
250
|
+
- Added 'restart' command. Patch from R. Bernstein.
|
251
|
+
|
252
|
+
0.5.1
|
253
|
+
- Bugfixes.
|
254
|
+
|
255
|
+
0.5
|
256
|
+
- Added post-mortem debugging
|
257
|
+
- Added 'irb' command.
|
258
|
+
|
259
|
+
0.4.5
|
260
|
+
- Fixed debug_method when applied to setter.
|
261
|
+
- Added 'reload' command which can be used to reload source code in case it's been changed.
|
262
|
+
- Added Debugger.reload_source_on_change option (true, by default) which controls whether ruby-debug should keep
|
263
|
+
track of the source files modification times and reload them if they've been changed.
|
264
|
+
|
265
|
+
0.4.4
|
266
|
+
- Renamed Context#set_suspend and Context#clear_suspend methods to Context#suspend and Context#resume respectively.
|
267
|
+
- Context#resume method not only clears suspend flag, but also resumes the thread execution.
|
268
|
+
- Bugfixes.
|
269
|
+
|
270
|
+
0.4.3
|
271
|
+
- Added Debugger.skip method which allows escaping a block from the debugger reach.
|
272
|
+
- Bugfixes.
|
273
|
+
|
274
|
+
0.4.2
|
275
|
+
- Module#deubg_method added.
|
276
|
+
- Added rdoc.
|
277
|
+
- Bugfixes.
|
278
|
+
|
279
|
+
0.4.1
|
280
|
+
- New binding_n method for Kernel module.
|
281
|
+
- Bugfixes.
|
282
|
+
|
283
|
+
0.4
|
284
|
+
- Debugger.start method takes a block. If a block is specified, this method starts debugger, yields to the block
|
285
|
+
and stops debugger at the end.
|
286
|
+
- 'tm[ate]' command accepts a frame number now.
|
287
|
+
- 'list' command accepts on/off parameter which controls whether listing will be displayed on every stop.
|
288
|
+
- 'eval on/off' controls the evaluation of unknown command.
|
289
|
+
- Debugger reads readline history file .rdebug_hist at startup and saves it at exit.
|
290
|
+
- 'sa[ve] <file>' command can be used to save current breackpoints and catchpoint if any
|
291
|
+
- 'sc[ript] <file>' command can be used to run script file. Script files can contain only control commands.
|
292
|
+
- rdebug script accepts '--script FILE' parameter.
|
293
|
+
- thread commands are available for the control port.
|
294
|
+
|
295
|
+
0.3 (2006-08-07)
|
296
|
+
- Renamed Debugger.start_server to Debugger.start_remote.
|
297
|
+
- Debugger.start_remote activates debugger by calling Debugger.start.
|
298
|
+
- Debugger.start_remote starts a control thread which listen on port 8990 and accepts control
|
299
|
+
commands, such as adding/deleting breakpoints, assigning catchpoint, etc. (Useful for GUI integration)
|
300
|
+
- New Debugger.wait_connection option. When it's true, Debugger.start_remote waits until
|
301
|
+
a remote connection is made.
|
302
|
+
- New Debugger.stop_on_connect option. When a remote connection is established, debugger
|
303
|
+
stops the main thread (Thread.main).
|
304
|
+
- 'interrupt' command is available for the control thread.
|
305
|
+
|
306
|
+
0.2.1 (2006-07-29)
|
307
|
+
- 'f[rame] nn' command selects a numbered frame. Frame numbers can be obtained by running frame
|
308
|
+
command without parameters.
|
309
|
+
- 'l[ist] =' show code in the context of the current line.
|
310
|
+
- 'tm[ate]' opens the current file in TextMate. Available only on Mac OSX.
|
311
|
+
|
312
|
+
0.2 (2006-07-17)
|
313
|
+
- Added the remote debugging. It should be activated by calling Debugger#start_server method.
|
314
|
+
- CHANGED: In order to activate the debugger, it's not enough to require 'ruby-debug'.
|
315
|
+
Debugger#start method must be called explicitly.
|
316
|
+
- Debugger used to evaluate anything you enter as long as it's not a command. Starting from
|
317
|
+
this version the 'eval' command must be used to evaluate an expression.
|
318
|
+
|
319
|
+
0.1.5 (2006-07-13)
|
320
|
+
- Now the check for a breakpoint uses base filename of the source file.
|
321
|
+
- Removed compilation warnings when compiling with -Wall
|
322
|
+
|
323
|
+
0.1.4 (2006-07-12)
|
324
|
+
- Remembers the previous command. Invoke it by typing a carriage return
|
325
|
+
at the command prompt.
|
326
|
+
|
327
|
+
0.1.3 (2006-07-11)
|
328
|
+
- Conditional breakpoints
|
329
|
+
- Bugfixes
|
330
|
+
|
331
|
+
0.1.2 (2006-07-16)
|
332
|
+
========================
|
333
|
+
|
334
|
+
- Initial release.
|
data/ChangeLog
ADDED
@@ -0,0 +1,5655 @@
|
|
1
|
+
2009-03-29 03:00 Rocky Bernstein
|
2
|
+
|
3
|
+
* ChangeLog, cli/ruby-debug/commands/breakpoints.rb, lib/ChangeLog,
|
4
|
+
test/data/annotate.right, test/data/breakpoints.right,
|
5
|
+
test/data/emacs_basic.right, test/data/info.right,
|
6
|
+
test/data/save.right: Canonicalize breakpoint locations a little
|
7
|
+
better. More work should be done and more work should be done on
|
8
|
+
the testing side too.
|
9
|
+
|
10
|
+
2009-03-17 10:35 Rocky Bernstein
|
11
|
+
|
12
|
+
* cli/ruby-debug/commands/irb.rb: Document irb additions old and
|
13
|
+
new
|
14
|
+
|
15
|
+
2009-03-17 10:33 Rocky Bernstein
|
16
|
+
|
17
|
+
* cli/ruby-debug/commands/irb.rb: irb "next" -> "n" since "next" is
|
18
|
+
a reserved word.
|
19
|
+
|
20
|
+
2009-03-17 10:30 Rocky Bernstein
|
21
|
+
|
22
|
+
* cli/ruby-debug/commands/irb.rb: Fix some irb -d breakage when set
|
23
|
+
autoirb is in effect
|
24
|
+
|
25
|
+
2009-03-17 10:22 Rocky Bernstein
|
26
|
+
|
27
|
+
* cli/ruby-debug/commands/irb.rb: Add "next" and "step" commands in
|
28
|
+
irb
|
29
|
+
|
30
|
+
2009-03-17 02:05 Rocky Bernstein
|
31
|
+
|
32
|
+
* cli/ruby-debug/commands/irb.rb, cli/ruby-debug/processor.rb,
|
33
|
+
configure.ac, test/data/ctrl.right, test/data/post-mortem.right,
|
34
|
+
test/test-ctrl.rb: configure.ac: in 0.10.4vc now. Add -d in irb
|
35
|
+
facilitate debugger testing via global $rdebug_state. Also set
|
36
|
+
$rdebug_state in debuggertesting is set.
|
37
|
+
"kill" is now allowed as a control command, this adjusts output.
|
38
|
+
and this changes
|
39
|
+
|
40
|
+
2009-03-11 23:42 Rocky Bernstein
|
41
|
+
|
42
|
+
* ChangeLog, doc/ruby-debug.texi, lib/ChangeLog: update texinfo for
|
43
|
+
catch
|
44
|
+
|
45
|
+
2009-03-11 18:57 Rocky Bernstein
|
46
|
+
|
47
|
+
* cli/ruby-debug/commands/catchpoint.rb, emacs/rdebug-core.el,
|
48
|
+
emacs/rdebug-track.el, emacs/test/test-regexp.el: Update "catch"
|
49
|
+
command help string. Reindent some emacs files to make tests
|
50
|
+
happy.
|
51
|
+
|
52
|
+
2009-02-10 04:32 Rocky Bernstein
|
53
|
+
|
54
|
+
* emacs/rdebug-core.el: Remove the annoying disappearing command
|
55
|
+
window when we there's an initial error in running the Ruby
|
56
|
+
program
|
57
|
+
|
58
|
+
2009-01-23 20:51 Rocky Bernstein
|
59
|
+
|
60
|
+
* doc/ruby-debug.texi: Show how to add a new command
|
61
|
+
|
62
|
+
2009-01-23 17:20 Rocky Bernstein
|
63
|
+
|
64
|
+
* cli/ruby-debug/commands/kill.rb, cli/ruby-debug/processor.rb: Add
|
65
|
+
a kill command
|
66
|
+
|
67
|
+
2008-12-24 03:32 Rocky Bernstein
|
68
|
+
|
69
|
+
* test/cli/commands/unit/regexp.rb: One more quit test.
|
70
|
+
|
71
|
+
2008-12-24 03:21 Rocky Bernstein
|
72
|
+
|
73
|
+
* cli/ruby-debug/commands/quit.rb, doc/ruby-debug.texi,
|
74
|
+
test/cli/commands/unit/regexp.rb, test/data/annotate.cmd,
|
75
|
+
test/data/annotate.right, test/data/break_bad.cmd,
|
76
|
+
test/data/break_bad.right, test/data/breakpoints.cmd,
|
77
|
+
test/data/breakpoints.right: Allow ! suffix on {q{,uit},exit} to
|
78
|
+
be the same as "unconditionally" #23299
|
79
|
+
|
80
|
+
2008-11-25 02:43 Rocky Bernstein
|
81
|
+
|
82
|
+
* ChangeLog, cli/ruby-debug/commands/frame.rb, configure.ac,
|
83
|
+
doc/ruby-debug.texi, ext/ruby_debug.c, lib/ChangeLog,
|
84
|
+
test/data/frame.cmd, test/data/frame.right: Frame without a frame
|
85
|
+
number means frame 0, same as gdb. We are now in 0.10.4 territory
|
86
|
+
now.
|
87
|
+
|
88
|
+
2008-11-17 07:34 Rocky Bernstein
|
89
|
+
|
90
|
+
* CHANGES: Last commit before release.
|
91
|
+
|
92
|
+
2008-11-16 00:14 Rocky Bernstein
|
93
|
+
|
94
|
+
* ChangeLog, bin/rdebug, lib/ChangeLog: Add rdoc for rdebug script.
|
95
|
+
|
96
|
+
2008-11-15 22:13 Rocky Bernstein
|
97
|
+
|
98
|
+
* Rakefile, ext/ruby_debug.c: Go over RDOC documentation.
|
99
|
+
|
100
|
+
2008-11-15 21:51 Rocky Bernstein
|
101
|
+
|
102
|
+
* doc/ruby-debug.texi: Add one more reference to start with a block
|
103
|
+
|
104
|
+
2008-11-15 21:23 Rocky Bernstein
|
105
|
+
|
106
|
+
* doc/ruby-debug.texi: Remove hard-coded version number in example
|
107
|
+
output
|
108
|
+
|
109
|
+
2008-11-15 02:21 Rocky Bernstein
|
110
|
+
|
111
|
+
* ext/win32/.cvsignore: More administrivia
|
112
|
+
|
113
|
+
2008-11-15 02:20 Rocky Bernstein
|
114
|
+
|
115
|
+
* ext/win32: More administrivia
|
116
|
+
|
117
|
+
2008-11-15 02:18 Rocky Bernstein
|
118
|
+
|
119
|
+
* ., .cvsignore: More administrivia
|
120
|
+
|
121
|
+
2008-11-14 19:39 Rocky Bernstein
|
122
|
+
|
123
|
+
* ., .cvsignore: More administrivia
|
124
|
+
|
125
|
+
2008-11-14 19:38 Rocky Bernstein
|
126
|
+
|
127
|
+
* .cvsignore: Administrivia
|
128
|
+
|
129
|
+
2008-11-14 19:37 Rocky Bernstein
|
130
|
+
|
131
|
+
* ., README, Rakefile, doc, doc/.cvsignore: Go over documentation
|
132
|
+
for 0.10.3 release. rdoc creates files in doc/rdoc.
|
133
|
+
|
134
|
+
2008-11-14 19:28 Rocky Bernstein
|
135
|
+
|
136
|
+
* README, configure.ac, doc/ruby-debug.texi,
|
137
|
+
lib/ruby-debug-base.rb: Go over documentation and revise.
|
138
|
+
|
139
|
+
2008-11-14 15:32 Rocky Bernstein
|
140
|
+
|
141
|
+
* CHANGES, ChangeLog, cli/ruby-debug.rb,
|
142
|
+
cli/ruby-debug/commands/frame.rb, doc/ruby-debug.texi,
|
143
|
+
ext/ruby_debug.c, lib/ChangeLog, lib/ruby-debug-base.rb: Move
|
144
|
+
Debugger#debugger from base to cli. Revert code in ruby_debug.c
|
145
|
+
and block parameter in debugger. cf. -> Compare with. Document
|
146
|
+
Debugger.start better.
|
147
|
+
|
148
|
+
2008-11-13 10:29 Rocky Bernstein
|
149
|
+
|
150
|
+
* ChangeLog, ext/ruby_debug.c, lib/ChangeLog: Make
|
151
|
+
Debugger.start{block} work if Debugger.started? is false. Second
|
152
|
+
try.
|
153
|
+
|
154
|
+
2008-11-11 15:33 Rocky Bernstein
|
155
|
+
|
156
|
+
* ., Rakefile, test/cli/commands/catchpoint_test.rb,
|
157
|
+
test/cli/commands/unit, test/cli/commands/unit/regexp.rb: Start
|
158
|
+
unit test for command regular expressions. Much more willing out
|
159
|
+
to be done later....
|
160
|
+
|
161
|
+
2008-11-11 14:42 Rocky Bernstein
|
162
|
+
|
163
|
+
* test/data/raise.right: More line number changes in tdebug
|
164
|
+
|
165
|
+
2008-11-11 14:40 Rocky Bernstein
|
166
|
+
|
167
|
+
* test/data/raise.right: tdebug lines have changed
|
168
|
+
|
169
|
+
2008-11-11 02:07 Rocky Bernstein
|
170
|
+
|
171
|
+
* ChangeLog, cli/ruby-debug/commands/frame.rb, lib/ChangeLog,
|
172
|
+
test/test-dollar-0.rb, test/test-frame.rb, test/trunc-call.rb:
|
173
|
+
Tweak truncated stack test since Ruby's caller doesn't seem to
|
174
|
+
include (tail?) recursive calls and we do. Get regression tests
|
175
|
+
working in light of recent changes.
|
176
|
+
|
177
|
+
2008-11-10 08:47 Kent Sibilev
|
178
|
+
|
179
|
+
* ext/ruby_debug.c: register debug_frame_t->arg_ary with GC
|
180
|
+
|
181
|
+
2008-11-10 02:56 Kent Sibilev
|
182
|
+
|
183
|
+
* bin/rdebug, ext/ruby_debug.c: Trying to fix "if $0 == __FILE__"
|
184
|
+
ruby's idiom. Apparently setting $0 to
|
185
|
+
a new value doesn't work correctly. (Ruby's bug?)
|
186
|
+
|
187
|
+
$ cat t3.rb
|
188
|
+
p $0
|
189
|
+
p File.expand_path $0
|
190
|
+
$0 = File.expand_path $0
|
191
|
+
p $0
|
192
|
+
$ ruby t3.rb
|
193
|
+
"t3.rb"
|
194
|
+
"/Users/kent/Work/ruby-debug/trunk/t3.rb"
|
195
|
+
"/Users/ke"
|
196
|
+
|
197
|
+
2008-11-10 01:50 Kent Sibilev
|
198
|
+
|
199
|
+
* ext/ruby_debug.h: added declaration of
|
200
|
+
check_breakpoints_by_method method to remove compiler warning
|
201
|
+
|
202
|
+
2008-11-10 01:48 Kent Sibilev
|
203
|
+
|
204
|
+
* lib/ruby-debug-base.rb: a little bit more readable
|
205
|
+
|
206
|
+
2008-11-10 01:43 Kent Sibilev
|
207
|
+
|
208
|
+
* ext/ruby_debug.c: running at_exit hooks at the end of the
|
209
|
+
debug_load method in order to fix test cases a chance to run
|
210
|
+
|
211
|
+
2008-11-10 01:41 Kent Sibilev
|
212
|
+
|
213
|
+
* ext/ruby_debug.c: can't store a copy of the debug_context in the
|
214
|
+
stack like that, it doesn't play along with garbage collector.
|
215
|
+
|
216
|
+
2008-11-10 01:39 Kent Sibilev
|
217
|
+
|
218
|
+
* ext/ruby_debug.c: these two methods are unused
|
219
|
+
|
220
|
+
2008-11-10 01:36 Kent Sibilev
|
221
|
+
|
222
|
+
* ext/breakpoint.c: fix the compiler warning
|
223
|
+
|
224
|
+
2008-11-10 01:35 Kent Sibilev
|
225
|
+
|
226
|
+
* lib/ruby-debug-base.rb: Debugger.start must always call the
|
227
|
+
passed block
|
228
|
+
|
229
|
+
2008-11-07 19:35 Rocky Bernstein
|
230
|
+
|
231
|
+
* ChangeLog, cli/ruby-debug/commands/frame.rb, lib/ChangeLog:
|
232
|
+
Change truncated frame message.
|
233
|
+
|
234
|
+
2008-11-07 10:39 Rocky Bernstein
|
235
|
+
|
236
|
+
* ChangeLog, bin/rdebug, cli/ruby-debug.rb,
|
237
|
+
cli/ruby-debug/commands/frame.rb, lib/ChangeLog, test/tdebug.rb:
|
238
|
+
Add check to "where" to see if the call stack is truncated; task
|
239
|
+
#2354
|
240
|
+
|
241
|
+
2008-11-06 16:17 Rocky Bernstein
|
242
|
+
|
243
|
+
* ChangeLog, Rakefile, lib/ChangeLog: #22698 Allow ruby-debug-base
|
244
|
+
0.x.y.z be compatible with ruby-debug 0.x.y.
|
245
|
+
|
246
|
+
2008-11-02 21:59 Rocky Bernstein
|
247
|
+
|
248
|
+
* ChangeLog, ext/ruby_debug.c, lib/ChangeLog,
|
249
|
+
lib/ruby-debug-base.rb: Debugger.start with a block now stops
|
250
|
+
inside the block. Debugger.debugger with a block works like
|
251
|
+
Debugger.start with a block.
|
252
|
+
|
253
|
+
The whole interface is hopelessly kludgy and needs to be redone.
|
254
|
+
|
255
|
+
2008-10-27 15:29 Rocky Bernstein
|
256
|
+
|
257
|
+
* ChangeLog, test/data/raise.right: tdebug.rb line numbers changed.
|
258
|
+
Update test numbers -- I think this is right.
|
259
|
+
|
260
|
+
2008-10-26 14:54 Rocky Bernstein
|
261
|
+
|
262
|
+
* ChangeLog, ext/extconf.rb, ext/ruby_debug.c, lib/ChangeLog: Doc
|
263
|
+
typo. Add comment to remind me how to turn off optimizationin
|
264
|
+
extconf.rb
|
265
|
+
|
266
|
+
2008-10-25 18:10 Rocky Bernstein
|
267
|
+
|
268
|
+
* cli/ruby-debug/interface.rb: Fix mismatched interface.
|
269
|
+
|
270
|
+
2008-10-25 16:01 Rocky Bernstein
|
271
|
+
|
272
|
+
* cli/ruby-debug/commands/breakpoints.rb, ext/ruby_debug.c,
|
273
|
+
lib/ChangeLog, test/data/annotate.right,
|
274
|
+
test/data/breakpoints.right, test/data/emacs_basic.right,
|
275
|
+
test/data/finish.right, test/test-finish.rb: Warn and add a
|
276
|
+
"confirmation" when setting a breakpoint on a file that is not
|
277
|
+
loaded. Regression tests no longer fail.
|
278
|
+
|
279
|
+
2008-09-22 21:01 Rocky Bernstein
|
280
|
+
|
281
|
+
* cli/ruby-debug.rb: Remove a $DEBUG warning
|
282
|
+
|
283
|
+
2008-09-22 00:07 Rocky Bernstein
|
284
|
+
|
285
|
+
* doc, doc/.cvsignore, lib/ruby-debug-base.rb,
|
286
|
+
test/data/pm-bug.cmd, test/data/pm-bug.right,
|
287
|
+
test/data/post-mortem.right, test/pm-bug.rb, test/test-pm.rb:
|
288
|
+
#22118 bug in showing variables post mortem. Patch thanks to
|
289
|
+
rubikitch.
|
290
|
+
Update pm.rb integration test.
|
291
|
+
|
292
|
+
2008-09-21 23:09 Rocky Bernstein
|
293
|
+
|
294
|
+
* CHANGES: In 0.10.3 territory now.
|
295
|
+
|
296
|
+
2008-09-21 23:06 Rocky Bernstein
|
297
|
+
|
298
|
+
* ext/ruby_debug.c, test/tdebug.rb: tdebug.rb: modify frozen string
|
299
|
+
taken from rdebug. Patch from Martin Krauskopf.
|
300
|
+
ruby_debug.c: in 0.10.3 now.
|
301
|
+
|
302
|
+
2008-09-03 17:33 Rocky Bernstein
|
303
|
+
|
304
|
+
* doc: Administrivia
|
305
|
+
|
306
|
+
2008-09-03 17:29 Rocky Bernstein
|
307
|
+
|
308
|
+
* ChangeLog, lib/ChangeLog, test/helper.rb: Show line numbers when
|
309
|
+
$DEBUG is set. Patch #21772 from Martin Krauskopf
|
310
|
+
|
311
|
+
2008-08-28 05:43 Kent Sibilev
|
312
|
+
|
313
|
+
* ext/ruby_debug.c:
|
314
|
+
|
315
|
+
2008-08-28 05:41 Kent Sibilev
|
316
|
+
|
317
|
+
* CHANGES: preparing version 0.10.2
|
318
|
+
|
319
|
+
2008-08-15 17:36 Kent Sibilev
|
320
|
+
|
321
|
+
* cli/ruby-debug/commands/list.rb: Fixed an exception when calling
|
322
|
+
Kernel#debugger method from the eval code
|
323
|
+
|
324
|
+
2008-07-10 09:47 Kent Sibilev
|
325
|
+
|
326
|
+
* cli/ruby-debug/commands/continue.rb, cli/ruby-debug/processor.rb:
|
327
|
+
allow 'continue' command from post-mortem
|
328
|
+
|
329
|
+
here is an example where it is needed:
|
330
|
+
|
331
|
+
...
|
332
|
+
Debugger.post_mortem do
|
333
|
+
method_that_raises_an_exception()
|
334
|
+
end
|
335
|
+
...
|
336
|
+
|
337
|
+
I want to be able to inspect the post_mortem context and then to
|
338
|
+
continue the program execution
|
339
|
+
|
340
|
+
2008-07-10 08:55 Kent Sibilev
|
341
|
+
|
342
|
+
* ext/ruby_debug.c: fixed segfault and finish command
|
343
|
+
|
344
|
+
2008-07-09 19:43 Kent Sibilev
|
345
|
+
|
346
|
+
* cli/ruby-debug/commands/breakpoints.rb: allow setting a
|
347
|
+
breakpoint on a file that is not yet loaded
|
348
|
+
|
349
|
+
2008-07-09 19:29 Kent Sibilev
|
350
|
+
|
351
|
+
* cli/ruby-debug/interface.rb: RemoteInterface should extend
|
352
|
+
Interface class
|
353
|
+
|
354
|
+
2008-07-09 19:25 Kent Sibilev
|
355
|
+
|
356
|
+
* bin/rdebug: $0 is frozen in Ruby 1.8.7
|
357
|
+
|
358
|
+
2008-07-09 00:43 Rocky Bernstein
|
359
|
+
|
360
|
+
* cli/ruby-debug.rb, cli/ruby-debug/processor.rb: Some meager (and
|
361
|
+
not complete) support for a verbose mode on
|
362
|
+
source'ing a file. Some more print's turned to errmsg as
|
363
|
+
appropriate.
|
364
|
+
|
365
|
+
2008-07-07 07:11 Rocky Bernstein
|
366
|
+
|
367
|
+
* lib/ruby-debug-base.rb: Tracker [#20041] start erroneously moved
|
368
|
+
to Kernel - should be in
|
369
|
+
Debugger.start
|
370
|
+
|
371
|
+
2008-07-03 16:03 Rocky Bernstein
|
372
|
+
|
373
|
+
* doc/ruby-debug.texi: Document that backslash can escape debugger
|
374
|
+
command separation.
|
375
|
+
|
376
|
+
2008-06-20 06:46 Rocky Bernstein
|
377
|
+
|
378
|
+
* CHANGES, cli/ruby-debug/commands/trace.rb,
|
379
|
+
lib/ruby-debug-base.rb: trace.rb: add "trace var"
|
380
|
+
ruby-debug-base.rb: remove another undefined warning.
|
381
|
+
|
382
|
+
2008-05-27 03:54 Rocky Bernstein
|
383
|
+
|
384
|
+
* cli/ruby-debug/commands/save.rb, cli/ruby-debug/interface.rb,
|
385
|
+
test/data/save.cmd, test/data/save.right, test/test-save.rb: Add
|
386
|
+
save test. save.rb: use pretty-printed regexp. Interface, for now
|
387
|
+
add restart_file accessor like the others. The processor
|
388
|
+
interface
|
389
|
+
need revision though.
|
390
|
+
|
391
|
+
2008-05-24 01:27 Rocky Bernstein
|
392
|
+
|
393
|
+
* ChangeLog, doc/ruby-debug.texi, lib/ChangeLog: Remove dup lines.
|
394
|
+
|
395
|
+
2008-05-23 14:57 Rocky Bernstein
|
396
|
+
|
397
|
+
* cli/ruby-debug/commands/save.rb: Catchpoints have changed. Fix
|
398
|
+
bug in saving them.
|
399
|
+
|
400
|
+
2008-05-23 01:04 Rocky Bernstein
|
401
|
+
|
402
|
+
* cli/ruby-debug/commands/catchpoint.rb,
|
403
|
+
cli/ruby-debug/commands/info.rb, ext/breakpoint.c,
|
404
|
+
test/cli/commands/catchpoint_test.rb, test/data/catch.cmd,
|
405
|
+
test/data/catch.right, test/test-catch.rb: Lots of bogosity fixed
|
406
|
+
in catchpoint handling. Added "catch xxx off".
|
407
|
+
Confirm when deleting all catchpoints. Correct C rdoc.
|
408
|
+
#20237
|
409
|
+
|
410
|
+
2008-05-20 07:20 Rocky Bernstein
|
411
|
+
|
412
|
+
* doc/rdebug-emacs.texi, doc/ruby-debug.texi: Use a straight quote
|
413
|
+
in the typewriter font.
|
414
|
+
|
415
|
+
2008-05-17 22:11 Rocky Bernstein
|
416
|
+
|
417
|
+
* cli/ruby-debug/commands/save.rb: Wording a little closer to gdb's
|
418
|
+
;-)
|
419
|
+
|
420
|
+
2008-05-17 11:35 Rocky Bernstein
|
421
|
+
|
422
|
+
* doc/rdebug-emacs.texi, doc/ruby-debug.texi: e.g. -> e.g.@:
|
423
|
+
|
424
|
+
2008-05-15 18:06 Rocky Bernstein
|
425
|
+
|
426
|
+
* test, test/.cvsignore: Ignore config.private.yaml which folks may
|
427
|
+
use/customize to omit tests
|
428
|
+
|
429
|
+
2008-05-15 17:52 Rocky Bernstein
|
430
|
+
|
431
|
+
* Rakefile, test/cli, test/cli/commands,
|
432
|
+
test/cli/commands/catchpoint_test.rb: Regression test for recent
|
433
|
+
"catch nn off" error. Again from Martin Krauskopf
|
434
|
+
|
435
|
+
2008-05-15 16:05 Rocky Bernstein
|
436
|
+
|
437
|
+
* ChangeLog, cli/ruby-debug/commands/catchpoint.rb, lib/ChangeLog:
|
438
|
+
Handle "catch nnn off" Forgotten there during r656.
|
439
|
+
From mkrauskopf [#20156].
|
440
|
+
|
441
|
+
2008-05-12 03:21 Rocky Bernstein
|
442
|
+
|
443
|
+
* cli/ruby-debug/commands/irb.rb: Small doc fix.
|
444
|
+
|
445
|
+
2008-05-11 15:25 Rocky Bernstein
|
446
|
+
|
447
|
+
* test/data/raise.right: tdebug.rb got a line shorter.
|
448
|
+
|
449
|
+
2008-05-11 09:03 Rocky Bernstein
|
450
|
+
|
451
|
+
* test/helper.rb, test/test-init.rb: Patch #19934 multi-interpreter
|
452
|
+
patch from Martin Krauskopf
|
453
|
+
|
454
|
+
2008-05-11 08:38 Rocky Bernstein
|
455
|
+
|
456
|
+
* bin/rdebug, ext/ruby_debug.c, test/data/output.right,
|
457
|
+
test/data/quit.right, test/tdebug.rb: Remove stop in debug_load
|
458
|
+
due to Debugger.start getting called twice.
|
459
|
+
The fix -- for now -- is to add another parameter to debug_load
|
460
|
+
to
|
461
|
+
indicate not to increment debug_count. We could also make that
|
462
|
+
the
|
463
|
+
default in debug_load as well, but debug_load might be useful in
|
464
|
+
other
|
465
|
+
situations and where control_threads are not relevant (which is
|
466
|
+
why we
|
467
|
+
need to call Debugger.start rather than let debug_load do it).
|
468
|
+
|
469
|
+
Bug #19930
|
470
|
+
|
471
|
+
2008-05-05 18:05 Rocky Bernstein
|
472
|
+
|
473
|
+
* ChangeLog, lib/ChangeLog, test/data/frame.right,
|
474
|
+
test/test-frame.rb: make test-frame installation independent. Bug
|
475
|
+
#19931
|
476
|
+
|
477
|
+
2008-05-01 23:16 Rocky Bernstein
|
478
|
+
|
479
|
+
* doc/ruby-debug.texi: Remove a Texism. texinfo does not do or need
|
480
|
+
italic correction.
|
481
|
+
|
482
|
+
2008-04-30 20:14 Rocky Bernstein
|
483
|
+
|
484
|
+
* doc/ruby-debug.texi: Fix doc for binding_n().
|
485
|
+
|
486
|
+
2008-04-29 14:00 Rocky Bernstein
|
487
|
+
|
488
|
+
* cli/ruby-debug/commands/method.rb, doc/ruby-debug.texi,
|
489
|
+
test/classes.rb, test/data/methodsig.right: Small doc and test
|
490
|
+
improvements on 'method signature'
|
491
|
+
|
492
|
+
2008-04-29 13:37 Rocky Bernstein
|
493
|
+
|
494
|
+
* ChangeLog, cli/ruby-debug/commands/breakpoints.rb,
|
495
|
+
cli/ruby-debug/commands/continue.rb, lib/ChangeLog,
|
496
|
+
test/data/frame.cmd, test/data/frame.right: Test line number in
|
497
|
+
"continue" command for validity.
|
498
|
+
|
499
|
+
2008-04-29 09:11 Rocky Bernstein
|
500
|
+
|
501
|
+
* cli/ruby-debug/commands/method.rb,
|
502
|
+
cli/ruby-debug/commands/set.rb,
|
503
|
+
cli/ruby-debug/commands/variables.rb, test/classes.rb,
|
504
|
+
test/data/method.cmd, test/data/method.right,
|
505
|
+
test/data/methodsig.cmd, test/data/methodsig.right,
|
506
|
+
test/data/setshow.right, test/test-method.rb: Add "method
|
507
|
+
signature" command to show a method's signature.
|
508
|
+
|
509
|
+
2008-04-29 08:23 Rocky Bernstein
|
510
|
+
|
511
|
+
* test/config.yaml: Forgot to add this on last commit.
|
512
|
+
|
513
|
+
2008-04-28 16:42 Rocky Bernstein
|
514
|
+
|
515
|
+
* cli/ruby-debug/commands/set.rb, test/data/setshow.cmd,
|
516
|
+
test/data/setshow.right: Catch errors in improper set callstyle
|
517
|
+
parameter. Bug #19792
|
518
|
+
|
519
|
+
2008-04-28 16:16 Rocky Bernstein
|
520
|
+
|
521
|
+
* ChangeLog, lib/ChangeLog, test/helper.rb: From Martin Krauskopf
|
522
|
+
via patch #19779
|
523
|
+
|
524
|
+
Allow folks to configure Ruby used for CLI tests in the
|
525
|
+
test/config.yaml. The defaults are for native Ruby, so nothing
|
526
|
+
needs
|
527
|
+
to be done for ruby-debug.
|
528
|
+
|
529
|
+
Developers of interfaces other than cli might override
|
530
|
+
config.yaml by
|
531
|
+
customized config.private.yaml which is ignored. So there will be
|
532
|
+
no
|
533
|
+
trash in e.g. 'svn st' output when developer customize the Ruby
|
534
|
+
to be
|
535
|
+
used.
|
536
|
+
|
537
|
+
Handy for alternative interface implementations using
|
538
|
+
svn:externals.
|
539
|
+
|
540
|
+
2008-04-27 08:28 Rocky Bernstein
|
541
|
+
|
542
|
+
* emacs/rdebug-cmd.el, emacs/rdebug-track.el: Reduce spurious
|
543
|
+
read-only setting when short-key is turned
|
544
|
+
on/off in the command buffer.
|
545
|
+
|
546
|
+
2008-04-25 02:54 Rocky Bernstein
|
547
|
+
|
548
|
+
* CHANGES, emacs/rdebug-cmd.el, emacs/rdebug-gud.el,
|
549
|
+
emacs/rdebug-source.el, emacs/rdebug-track.el: Try to get
|
550
|
+
rdebug-track under control again.
|
551
|
+
Remove "<" in the command buffer as a local key setting.
|
552
|
+
Make more checkdoc friendly.
|
553
|
+
|
554
|
+
2008-04-22 02:49 Rocky Bernstein
|
555
|
+
|
556
|
+
* doc/ruby-debug.texi, lib/ruby-debug-base.rb: Experiment with
|
557
|
+
debugger(steps=0). Puts us in the debugger call, but this may be
|
558
|
+
the best we can do for now. See tracker
|
559
|
+
#19639.
|
560
|
+
|
561
|
+
2008-04-20 21:38 Rocky Bernstein
|
562
|
+
|
563
|
+
* doc/rdebug-emacs.texi, doc/ruby-debug.texi: rdebug-emacs.texi:
|
564
|
+
update nodes so makeinfo will work.
|
565
|
+
rdebug-texi: Note slight preference for ruby -rtracer over rdebug
|
566
|
+
--trace.
|
567
|
+
|
568
|
+
2008-04-19 13:22 Rocky Bernstein
|
569
|
+
|
570
|
+
* ext/ruby_debug.c, test/bp_loop_issue.rb,
|
571
|
+
test/data/break_loop_bug.cmd, test/data/break_loop_bug.right,
|
572
|
+
test/data/breakpoints.cmd, test/data/breakpoints.right,
|
573
|
+
test/data/emacs_basic.right, test/test-break-bad.rb,
|
574
|
+
test/test-emacs-basic.rb: Change test for whether we have moved
|
575
|
+
off a line or not for purposes
|
576
|
+
of stopping at a breakpoint on a line. The line events for which
|
577
|
+
there
|
578
|
+
are normally two stops are on NODE if's before the if and after
|
579
|
+
the
|
580
|
+
expression evaluation. Tracker #19594.
|
581
|
+
|
582
|
+
2008-04-16 01:11 Rocky Bernstein
|
583
|
+
|
584
|
+
* ChangeLog, cli/ruby-debug/commands/show.rb,
|
585
|
+
cli/ruby-debug/interface.rb, cli/ruby-debug/processor.rb,
|
586
|
+
ext/ruby_debug.c, lib/ChangeLog, test/data/setshow.cmd,
|
587
|
+
test/data/setshow.right: In 0.10.2 now. Some work to cope systems
|
588
|
+
without readline. More work is needed.
|
589
|
+
Add test of "set autoeval." Undefined command message more
|
590
|
+
closely like gdb's.
|
591
|
+
|
592
|
+
2008-04-15 23:56 Rocky Bernstein
|
593
|
+
|
594
|
+
* doc/ruby-debug.texi: Note that Debugger.start is currently broken
|
595
|
+
when used with a block.
|
596
|
+
|
597
|
+
2008-04-11 22:24 Anders Lindgren
|
598
|
+
|
599
|
+
* doc/rdebug-emacs.texi: Section on 'customize' added.
|
600
|
+
|
601
|
+
2008-04-10 08:49 Rocky Bernstein
|
602
|
+
|
603
|
+
* ChangeLog, cli/ruby-debug/command.rb, lib/ChangeLog: linecache is
|
604
|
+
required by ruby-debug-base not ruby-debug. Thanks Martin!
|
605
|
+
|
606
|
+
2008-04-10 08:00 Rocky Bernstein
|
607
|
+
|
608
|
+
* ChangeLog, Rakefile, lib/ChangeLog: Last change before 0.10.1
|
609
|
+
release.
|
610
|
+
|
611
|
+
2008-04-10 02:03 Rocky Bernstein
|
612
|
+
|
613
|
+
* ChangeLog, doc/rdebug-emacs.texi, lib/ChangeLog: Cosmetic stuff:
|
614
|
+
spelling corrections. Update node structure so texinfo
|
615
|
+
doesn't complain.
|
616
|
+
|
617
|
+
2008-04-09 21:22 Anders Lindgren
|
618
|
+
|
619
|
+
* doc/rdebug-emacs.texi: New chapter for multi-window debugging.
|
620
|
+
Intro reworked. NOTE: Menu nodes not updated.
|
621
|
+
|
622
|
+
2008-04-08 19:55 Anders Lindgren
|
623
|
+
|
624
|
+
* emacs/rdebug-shortkey.el, emacs/test/test-shortkey.el: Logic in
|
625
|
+
rdebug-internal-short-key-mode reworked. Test case updated.
|
626
|
+
|
627
|
+
2008-04-08 14:52 Rocky Bernstein
|
628
|
+
|
629
|
+
* ChangeLog, Rakefile, lib/ChangeLog: autorequire is deprecated and
|
630
|
+
presumably no longer needed
|
631
|
+
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/182827
|
632
|
+
|
633
|
+
2008-04-08 14:16 Rocky Bernstein
|
634
|
+
|
635
|
+
* test/data/raise.right: Another test data line number change
|
636
|
+
|
637
|
+
2008-04-08 14:12 Rocky Bernstein
|
638
|
+
|
639
|
+
* test/tdebug.rb: tdebug.rb alignment with rdebug
|
640
|
+
|
641
|
+
2008-04-08 14:02 Rocky Bernstein
|
642
|
+
|
643
|
+
* test/data/linetracep.cmd: Forgot to add this for the linetrace+
|
644
|
+
test.
|
645
|
+
|
646
|
+
2008-04-08 14:01 Rocky Bernstein
|
647
|
+
|
648
|
+
* emacs/rdebug-shortkey.el, emacs/test/test-shortkey.el: Attempt a
|
649
|
+
fix at shortkey internal. There be dragons here. Not sure what's
|
650
|
+
going on.
|
651
|
+
|
652
|
+
2008-04-08 10:23 Rocky Bernstein
|
653
|
+
|
654
|
+
* test/data/linetracep.right, test/test-trace.rb: Another linetrace
|
655
|
+
test. This time with linetrace+ set.
|
656
|
+
|
657
|
+
2008-04-08 10:19 Rocky Bernstein
|
658
|
+
|
659
|
+
* cli/ruby-debug/processor.rb, test/data/linetrace.cmd,
|
660
|
+
test/data/linetrace.right, test/test-trace.rb: processor.rb:
|
661
|
+
Silence possibly more warnings under $DEBUG
|
662
|
+
test/*: another linetrace test using the linetrace command.
|
663
|
+
|
664
|
+
2008-04-08 03:17 Rocky Bernstein
|
665
|
+
|
666
|
+
* test/data/output.right, test/data/quit.right: Test line numbers
|
667
|
+
changed. Sigh
|
668
|
+
|
669
|
+
2008-04-08 03:14 Rocky Bernstein
|
670
|
+
|
671
|
+
* test/tdebug.rb: Track rdebug.
|
672
|
+
|
673
|
+
2008-04-08 03:10 Rocky Bernstein
|
674
|
+
|
675
|
+
* test/test-trace.rb: Oops forget this test
|
676
|
+
|
677
|
+
2008-04-08 03:09 Rocky Bernstein
|
678
|
+
|
679
|
+
* bin/rdebug, cli/ruby-debug/processor.rb, test/data/trace.right,
|
680
|
+
test/tdebug.rb: Fix bug in --trace. Add regression test for that
|
681
|
+
as well.
|
682
|
+
Reduce (but alas not eliminate) extraneous line tracing.
|
683
|
+
|
684
|
+
2008-04-07 00:36 Rocky Bernstein
|
685
|
+
|
686
|
+
* CHANGES, ChangeLog, emacs/Makefile.am, emacs/rdebug-shortkey.el,
|
687
|
+
emacs/test/test-shortkey.el, lib/ChangeLog,
|
688
|
+
lib/ruby-debug-base.rb: ruby-debug-base.rb: document
|
689
|
+
Debugger.start parameters.
|
690
|
+
CHANGES: Revise what's happened
|
691
|
+
test-shortkey.el: A failing regression test because I think
|
692
|
+
rdebug-shortkey-mode
|
693
|
+
is not correct.
|
694
|
+
|
695
|
+
2008-04-06 03:03 Rocky Bernstein
|
696
|
+
|
697
|
+
* bin/rdebug, test/data/test-init-cygwin.right, test/test-init.rb:
|
698
|
+
Assigning $0 on cygwin seems weird. cygwin readline different too
|
699
|
+
|
700
|
+
2008-04-06 02:13 Rocky Bernstein
|
701
|
+
|
702
|
+
* test/data/test-init-osx.right, test/test-init.rb: read_command on
|
703
|
+
OSX seems to work differently. Punt for now.
|
704
|
+
|
705
|
+
2008-04-04 19:22 Rocky Bernstein
|
706
|
+
|
707
|
+
* cli/ruby-debug/commands/eval.rb: Sometimes remove_method isn't
|
708
|
+
defined.
|
709
|
+
|
710
|
+
2008-04-03 19:13 Rocky Bernstein
|
711
|
+
|
712
|
+
* doc/ruby-debug.texi: Small typos.
|
713
|
+
|
714
|
+
2008-04-03 19:01 Rocky Bernstein
|
715
|
+
|
716
|
+
* ChangeLog, doc/ruby-debug.texi, lib/ChangeLog,
|
717
|
+
lib/ruby-debug-base.rb, test/pm-base.rb: Allow setting
|
718
|
+
:post_mortem => true from Debugger.start.
|
719
|
+
|
720
|
+
2008-04-03 14:22 Rocky Bernstein
|
721
|
+
|
722
|
+
* Rakefile: We'll require linecache 0.4 or better. (Use SVN for
|
723
|
+
now. Will be released at same time as ruby-debug).
|
724
|
+
|
725
|
+
2008-04-03 14:15 Rocky Bernstein
|
726
|
+
|
727
|
+
* test/data/annotate.cmd, test/data/annotate.right,
|
728
|
+
test/data/post-mortem-osx.right, test/test-pm.rb: test-pm.rb,
|
729
|
+
post-mortem-osx.right: Allow for tmate command on OSX.
|
730
|
+
annotate.*: make sure 'set force on' doesn't happen.
|
731
|
+
|
732
|
+
2008-04-03 12:06 Rocky Bernstein
|
733
|
+
|
734
|
+
* cli/ruby-debug/commands/irb.rb: irb is no longer 'experimental'.
|
735
|
+
|
736
|
+
2008-04-02 00:50 Rocky Bernstein
|
737
|
+
|
738
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-core.el,
|
739
|
+
emacs/rdebug-shortkey.el: Auto indent.
|
740
|
+
|
741
|
+
2008-04-02 00:27 Rocky Bernstein
|
742
|
+
|
743
|
+
* emacs/rdebug-core.el, emacs/rdebug-shortkey.el: Short-key mode is
|
744
|
+
turning itself on rather than off sometimes. More control over
|
745
|
+
trying to get rid of it when desired.
|
746
|
+
|
747
|
+
2008-03-30 03:01 Rocky Bernstein
|
748
|
+
|
749
|
+
* doc/ruby-debug.texi: Note that rdebug with test/unit might work.
|
750
|
+
|
751
|
+
2008-03-28 13:53 Rocky Bernstein
|
752
|
+
|
753
|
+
* ChangeLog, emacs/rdebug-annotate.el, lib/ChangeLog: Don't
|
754
|
+
unconditionally turn on short-key mode when annotations are on.
|
755
|
+
Use rdebug-short-key-mode setting to decide.
|
756
|
+
|
757
|
+
2008-03-23 17:47 Rocky Bernstein
|
758
|
+
|
759
|
+
* ChangeLog, Rakefile, cli/ruby-debug/commands/set.rb,
|
760
|
+
cli/ruby-debug/commands/settings.rb, lib/ChangeLog: set.rb ->
|
761
|
+
settings.rb since it's already one command per file, and
|
762
|
+
remove another :nodoc.
|
763
|
+
Rakefile: split long line
|
764
|
+
|
765
|
+
2008-03-23 04:12 Rocky Bernstein
|
766
|
+
|
767
|
+
* cli/ruby-debug/commands/show.rb, emacs/rdebug-core.el:
|
768
|
+
rdebug-core.el: allow rdebug-reset as an emasc command
|
769
|
+
show.rb: remove one more :nodoc
|
770
|
+
|
771
|
+
2008-03-21 19:04 Rocky Bernstein
|
772
|
+
|
773
|
+
* emacs/rdebug-breaks.el, emacs/rdebug-core.el,
|
774
|
+
emacs/rdebug-gud.el, emacs/test/test-cmd.el: Regularize names a
|
775
|
+
little bit. More work is needed though.
|
776
|
+
|
777
|
+
2008-03-21 18:39 Rocky Bernstein
|
778
|
+
|
779
|
+
* emacs/rdebug-breaks.el, emacs/rdebug-gud.el: Clear breakpoint
|
780
|
+
icons when quitting the debugger.
|
781
|
+
|
782
|
+
2008-03-19 19:56 Rocky Bernstein
|
783
|
+
|
784
|
+
* doc/ruby-debug.texi: more on --keep-frame-binding (for Martin)
|
785
|
+
|
786
|
+
2008-03-19 15:07 Rocky Bernstein
|
787
|
+
|
788
|
+
* cli/ruby-debug/commands/list.rb, test/data/list.cmd,
|
789
|
+
test/data/list.right, test/data/raise.right: Fix bug in "list -":
|
790
|
+
was scrolling back to negative lines. Had also been skipping
|
791
|
+
lines in forward list.
|
792
|
+
|
793
|
+
2008-03-19 07:36 Rocky Bernstein
|
794
|
+
|
795
|
+
* cli/ruby-debug/commands/info.rb: remove 'nodoc' (and doc) from
|
796
|
+
InfoCommand class
|
797
|
+
|
798
|
+
2008-03-19 07:31 Rocky Bernstein
|
799
|
+
|
800
|
+
* doc/rdebug-emacs.texi: Spelling correction.
|
801
|
+
|
802
|
+
2008-03-19 00:44 Rocky Bernstein
|
803
|
+
|
804
|
+
* doc/ruby-debug.texi: Some more spelling corrections.
|
805
|
+
|
806
|
+
2008-03-19 00:27 Rocky Bernstein
|
807
|
+
|
808
|
+
* doc/ruby-debug.texi: Spell-checking corrections.
|
809
|
+
|
810
|
+
2008-03-18 19:47 Rocky Bernstein
|
811
|
+
|
812
|
+
* CHANGES: Try to make more readible.
|
813
|
+
|
814
|
+
2008-03-18 16:05 Rocky Bernstein
|
815
|
+
|
816
|
+
* CHANGES, ChangeLog, cli/ruby-debug/commands/list.rb,
|
817
|
+
lib/ChangeLog, test/data/list.cmd, test/data/list.right,
|
818
|
+
test/test-finish.rb, test/test-list.rb: Fix bug in 'list' command
|
819
|
+
when wrapping off the end.
|
820
|
+
test-finish.rb: tolerate buggy in Ruby versions <= 1.8.7.
|
821
|
+
|
822
|
+
2008-03-18 00:43 Rocky Bernstein
|
823
|
+
|
824
|
+
* cli/ruby-debug/commands/list.rb,
|
825
|
+
cli/ruby-debug/commands/reload.rb: Split off reload into its own
|
826
|
+
file.
|
827
|
+
|
828
|
+
2008-03-17 14:29 Rocky Bernstein
|
829
|
+
|
830
|
+
* emacs/Makefile.am, emacs/rdebug-annotate.el, emacs/rdebug-cmd.el,
|
831
|
+
emacs/rdebug-fns.el, emacs/rdebug-locring.el,
|
832
|
+
emacs/rdebug-shortkey.el, emacs/rdebug-source.el,
|
833
|
+
emacs/rdebug-track.el, emacs/rdebug-vars.el,
|
834
|
+
emacs/test/test-fns.el: Regularize location ring function names.
|
835
|
+
|
836
|
+
2008-03-17 04:03 Rocky Bernstein
|
837
|
+
|
838
|
+
* cli/ruby-debug/command.rb, cli/ruby-debug/commands/stepping.rb,
|
839
|
+
test/data/stepping.right: stepping.rb: don't step if invalid
|
840
|
+
parameter
|
841
|
+
command.rb: remove dupliate defined warning msg
|
842
|
+
|
843
|
+
2008-03-17 03:34 Rocky Bernstein
|
844
|
+
|
845
|
+
* cli/ruby-debug/commands/stepping.rb: Small doc addition
|
846
|
+
|
847
|
+
2008-03-17 03:17 Rocky Bernstein
|
848
|
+
|
849
|
+
* cli/ruby-debug/commands/source.rb: Make source file-not-found and
|
850
|
+
error
|
851
|
+
|
852
|
+
2008-03-17 03:07 Rocky Bernstein
|
853
|
+
|
854
|
+
* cli/ruby-debug/commands/source.rb: tidy regexp
|
855
|
+
|
856
|
+
2008-03-17 03:05 Rocky Bernstein
|
857
|
+
|
858
|
+
* cli/ruby-debug/commands/script.rb,
|
859
|
+
cli/ruby-debug/commands/source.rb: Rename to match command name.
|
860
|
+
Add miniscule doc.
|
861
|
+
|
862
|
+
2008-03-16 22:04 Rocky Bernstein
|
863
|
+
|
864
|
+
* cli/ruby-debug/commands/continue.rb,
|
865
|
+
cli/ruby-debug/commands/frame.rb, doc/ruby-debug.texi: Doc
|
866
|
+
changes
|
867
|
+
|
868
|
+
2008-03-16 16:38 Rocky Bernstein
|
869
|
+
|
870
|
+
* doc/ruby-debug.texi, test/base/base.rb, test/base/catchpoint.rb,
|
871
|
+
test/base/load.rb: Add debug_load test. Document
|
872
|
+
Debugger::Context better. Small doc changes.
|
873
|
+
|
874
|
+
2008-03-16 15:01 Rocky Bernstein
|
875
|
+
|
876
|
+
* bin/rdebug: Typo.
|
877
|
+
|
878
|
+
2008-03-16 07:39 Rocky Bernstein
|
879
|
+
|
880
|
+
* cli/ruby-debug/commands/frame.rb,
|
881
|
+
cli/ruby-debug/commands/help.rb: Minor doc changes
|
882
|
+
|
883
|
+
2008-03-16 06:50 Rocky Bernstein
|
884
|
+
|
885
|
+
* test/data/ctrl.cmd, test/data/ctrl.right: Make sure width is set
|
886
|
+
explicitly so we don't have vagaries of the environment.
|
887
|
+
|
888
|
+
2008-03-16 06:44 Rocky Bernstein
|
889
|
+
|
890
|
+
* test/data/stepping.cmd, test/data/stepping.right: Possibly patch
|
891
|
+
change to upcoming 1.8.7. Punt for now.
|
892
|
+
|
893
|
+
2008-03-16 04:03 Rocky Bernstein
|
894
|
+
|
895
|
+
* CHANGES, cli/ruby-debug/commands/finish.rb,
|
896
|
+
cli/ruby-debug/commands/frame.rb,
|
897
|
+
cli/ruby-debug/commands/quit.rb, doc/ruby-debug.texi,
|
898
|
+
test/data/breakpoints.cmd, test/data/breakpoints.right,
|
899
|
+
test/data/finish.cmd, test/data/finish.right,
|
900
|
+
test/test-finish.rb: Change finish with no args to finish out of
|
901
|
+
the currently selected
|
902
|
+
frame and document that.
|
903
|
+
Add test for "finish" command.
|
904
|
+
ruby-debug.texi: Note 2nd-hook eval bug in "if" statements.
|
905
|
+
|
906
|
+
ruby-debug.texi:
|
907
|
+
|
908
|
+
2008-03-13 02:15 Rocky Bernstein
|
909
|
+
|
910
|
+
* CHANGES, cli/ruby-debug/commands/finish.rb,
|
911
|
+
cli/ruby-debug/processor.rb, doc/ruby-debug.texi,
|
912
|
+
ext/ruby_debug.c, lib/ruby-debug-base.rb, rdbg.rb: INCOMPATIBLE
|
913
|
+
CHANGE: "finish" works like gdb - stop just before the
|
914
|
+
most recent method finishes. Will now accept a number which stops
|
915
|
+
that
|
916
|
+
many frames completed. (Note that return line numbers will be
|
917
|
+
funny,
|
918
|
+
the first line of the method until Ruby 1.8.7.)
|
919
|
+
|
920
|
+
2008-03-11 03:53 Rocky Bernstein
|
921
|
+
|
922
|
+
* test/base/base.rb, test/base/catchpoint.rb: Reduce unnecessary
|
923
|
+
dependencies and scope.
|
924
|
+
|
925
|
+
2008-03-10 14:51 Rocky Bernstein
|
926
|
+
|
927
|
+
* cli/ruby-debug/commands/catchpoint.rb,
|
928
|
+
cli/ruby-debug/commands/info.rb: "catch" is same as "info catch".
|
929
|
+
Document better "catch" command.
|
930
|
+
|
931
|
+
2008-03-10 13:28 Rocky Bernstein
|
932
|
+
|
933
|
+
* ChangeLog, lib/ChangeLog, test/data/raise.right: Dunno why we are
|
934
|
+
now one line number less. So be it (for now).
|
935
|
+
|
936
|
+
2008-03-10 11:42 Rocky Bernstein
|
937
|
+
|
938
|
+
* cli/ruby-debug/commands/continue.rb,
|
939
|
+
cli/ruby-debug/commands/finish.rb,
|
940
|
+
cli/ruby-debug/commands/stepping.rb, cli/ruby-debug/processor.rb:
|
941
|
+
Break out finish.rb and continue.rb from stepping.rb
|
942
|
+
|
943
|
+
2008-03-09 23:30 Rocky Bernstein
|
944
|
+
|
945
|
+
* CHANGES, ChangeLog, lib/ChangeLog, test/data/info.right: For now
|
946
|
+
we require the duplicate numbers on conditionals.
|
947
|
+
|
948
|
+
2008-03-09 23:25 Rocky Bernstein
|
949
|
+
|
950
|
+
* Rakefile: Need at least linecache 0.3 now. Probably 0.4 for
|
951
|
+
release.
|
952
|
+
|
953
|
+
2008-03-07 04:26 Rocky Bernstein
|
954
|
+
|
955
|
+
* Rakefile, bin/rdebug, doc/ruby-debug.texi, test/test-dollar-0.rb:
|
956
|
+
Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default
|
957
|
+
options.
|
958
|
+
|
959
|
+
2008-03-03 04:14 Rocky Bernstein
|
960
|
+
|
961
|
+
* cli/ruby-debug/commands/control.rb,
|
962
|
+
cli/ruby-debug/commands/quit.rb: Split off quit to it's own file
|
963
|
+
since it doesn't share code with the
|
964
|
+
reset of "control". Smaller is better and it helps deal with
|
965
|
+
meeting
|
966
|
+
in the middle for extending debug 1.9 code.
|
967
|
+
|
968
|
+
2008-03-03 01:50 Rocky Bernstein
|
969
|
+
|
970
|
+
* cli/ruby-debug/commands/stepping.rb, test/data/stepping.cmd,
|
971
|
+
test/data/stepping.right: Allow spaces at the end of step and
|
972
|
+
next. Test ";" between commands.
|
973
|
+
|
974
|
+
2008-03-02 16:45 Rocky Bernstein
|
975
|
+
|
976
|
+
* CHANGES, cli/ruby-debug/commands/breakpoints.rb,
|
977
|
+
cli/ruby-debug/commands/frame.rb,
|
978
|
+
cli/ruby-debug/commands/threads.rb, doc/ruby-debug.texi,
|
979
|
+
test/data/frame.cmd, test/data/frame.right: Add ability to
|
980
|
+
specify a thread number in a "frame" command.
|
981
|
+
|
982
|
+
2008-03-02 13:47 Rocky Bernstein
|
983
|
+
|
984
|
+
* doc/ruby-debug.texi: Add Instructions for building on Microsoft
|
985
|
+
Windows.
|
986
|
+
|
987
|
+
2008-03-02 13:07 Rocky Bernstein
|
988
|
+
|
989
|
+
* doc/ruby-debug.texi: Small typo.
|
990
|
+
|
991
|
+
2008-03-02 04:20 Rocky Bernstein
|
992
|
+
|
993
|
+
* cli/ruby-debug/commands/breakpoints.rb, lib/ruby-debug-base.rb,
|
994
|
+
test/base/base.rb, test/data/breakpoints.right,
|
995
|
+
test/data/emacs_basic.right: Better error message for an invalid
|
996
|
+
break command.
|
997
|
+
|
998
|
+
2008-03-02 03:32 Rocky Bernstein
|
999
|
+
|
1000
|
+
* emacs/rdebug-cmd.el: Bug in wrapping to newest in
|
1001
|
+
rdebug-older-location.
|
1002
|
+
|
1003
|
+
2008-03-02 02:48 Rocky Bernstein
|
1004
|
+
|
1005
|
+
* test/base/base.rb, test/base/binding.rb, test/gcd-dbg-nox.rb:
|
1006
|
+
Small changes. Use unshift instead of << and Remove from $: after
|
1007
|
+
done.
|
1008
|
+
base.rb: Debugger.start -> Debugger.start_
|
1009
|
+
|
1010
|
+
2008-03-02 02:24 Rocky Bernstein
|
1011
|
+
|
1012
|
+
* doc/Makefile.am, doc/rdebug-emacs.texi, doc/ruby-debug.texi:
|
1013
|
+
Split emacs stuff into it's own document. Right now this makes
|
1014
|
+
things
|
1015
|
+
worse. Hopefully the benefit over time will outweigh this.
|
1016
|
+
|
1017
|
+
2008-03-01 11:36 Rocky Bernstein
|
1018
|
+
|
1019
|
+
* doc/ruby-debug.texi: Go over post-mortem section. Note the
|
1020
|
+
weirdness concerning breakpoint
|
1021
|
+
file names and how to scope out how to fix.
|
1022
|
+
|
1023
|
+
2008-03-01 03:39 Rocky Bernstein
|
1024
|
+
|
1025
|
+
* emacs/rdebug-cmd.el: Add message when wrapping source location
|
1026
|
+
position. Not sure if this is right. We'll see.
|
1027
|
+
|
1028
|
+
2008-02-29 15:24 Rocky Bernstein
|
1029
|
+
|
1030
|
+
* emacs/rdebug-cmd.el, emacs/rdebug-frames.el: Fix bug in
|
1031
|
+
rdebug-older-location when ring is empty - index -1.
|
1032
|
+
Set rdebug-frames-current-frame-number variable in comint buffer
|
1033
|
+
which is
|
1034
|
+
needed at least for source location history processing.
|
1035
|
+
|
1036
|
+
2008-02-29 10:41 Rocky Bernstein
|
1037
|
+
|
1038
|
+
* emacs/rdebug-cmd.el: Remove gud-gdb-complete command for now.
|
1039
|
+
|
1040
|
+
2008-02-29 04:34 Rocky Bernstein
|
1041
|
+
|
1042
|
+
* emacs/rdebug-cmd.el, emacs/rdebug-fns.el, emacs/rdebug-frames.el,
|
1043
|
+
emacs/rdebug-gud.el, emacs/rdebug-secondary.el,
|
1044
|
+
emacs/rdebug-source.el: Wrap when ad top stack frame and trying
|
1045
|
+
to go to a newer one. I think
|
1046
|
+
the bindings for "<" and ">" were reversed. Some checkdoc
|
1047
|
+
warnings addressed.
|
1048
|
+
|
1049
|
+
2008-02-29 01:33 Rocky Bernstein
|
1050
|
+
|
1051
|
+
* emacs/rdebug-track.el: Try to make more like rdebug. Get
|
1052
|
+
M-up/M-down working.
|
1053
|
+
Need to revisit this code and rdebug-core to understand, unify,
|
1054
|
+
and simplify
|
1055
|
+
more.
|
1056
|
+
|
1057
|
+
2008-02-28 20:04 Rocky Bernstein
|
1058
|
+
|
1059
|
+
* emacs/rdebug-core.el: For the bogus-buffer, use something less
|
1060
|
+
computationally intensive.
|
1061
|
+
|
1062
|
+
2008-02-28 05:06 Rocky Bernstein
|
1063
|
+
|
1064
|
+
* ChangeLog, emacs/rdebug-core.el, emacs/rdebug-fns.el,
|
1065
|
+
lib/ChangeLog, test/data/breakpoints.cmd,
|
1066
|
+
test/data/breakpoints.right: breakpoints.{cmd,right}: test for an
|
1067
|
+
invalid stopping line number
|
1068
|
+
rdebug-fns.el: move generic split-string-and-unquote from
|
1069
|
+
rdebug-core.
|
1070
|
+
rdebug-core.el: Add rdebug-common-init to replace
|
1071
|
+
gud-common-init. Is
|
1072
|
+
simpler, and finds files better via debugger output/annotations.
|
1073
|
+
Fix bug in rdebug-setup-windows: gud-find-file can return nil,
|
1074
|
+
and
|
1075
|
+
we still need to set buf.
|
1076
|
+
|
1077
|
+
2008-02-27 04:04 Rocky Bernstein
|
1078
|
+
|
1079
|
+
* lib/ruby-debug-base.rb: Slightly more robust handle_post_mortem.
|
1080
|
+
|
1081
|
+
2008-02-26 17:31 Rocky Bernstein
|
1082
|
+
|
1083
|
+
* ChangeLog, emacs/rdebug-cmd.el, emacs/rdebug-fns.el,
|
1084
|
+
emacs/rdebug-source.el, emacs/rdebug-vars.el,
|
1085
|
+
emacs/test/test-fns.el, lib/ChangeLog: Go over source location
|
1086
|
+
positioning. 0 is now the oldest (first) position. Add M-S-down
|
1087
|
+
and M-S-up for first and last. More tests needed in test-fns.el
|
1088
|
+
and need to prompt on wrap around.
|
1089
|
+
|
1090
|
+
2008-02-26 00:57 Rocky Bernstein
|
1091
|
+
|
1092
|
+
* ChangeLog, cli/ruby-debug/commands/info.rb, lib/ChangeLog,
|
1093
|
+
test/data/info.cmd, test/data/info.right: Fix bug in "info file
|
1094
|
+
xxx breakpoints".
|
1095
|
+
|
1096
|
+
2008-02-25 12:39 Rocky Bernstein
|
1097
|
+
|
1098
|
+
* cli/ruby-debug/interface.rb: File.exists? -> File.exist? for Ruby
|
1099
|
+
1.9
|
1100
|
+
|
1101
|
+
2008-02-24 16:36 Rocky Bernstein
|
1102
|
+
|
1103
|
+
* ChangeLog, bin/rdebug, lib/ChangeLog: rdebug; make more Ruby 1.9
|
1104
|
+
compatible.
|
1105
|
+
|
1106
|
+
2008-02-24 16:14 Rocky Bernstein
|
1107
|
+
|
1108
|
+
* ChangeLog, bin/rdebug, emacs/rdebug-regexp.el, lib/ChangeLog,
|
1109
|
+
rdbg.rb: Minor changes.
|
1110
|
+
rdbg.rb: don't need $DEBUG test any more
|
1111
|
+
rdebug-regexp.el: go over with checkdoc
|
1112
|
+
bin/rdebug: use PATH_SEPARATOR (for 'doze again)
|
1113
|
+
|
1114
|
+
2008-02-24 04:51 Rocky Bernstein
|
1115
|
+
|
1116
|
+
* ChangeLog, cli/ruby-debug/commands/info.rb, doc/ruby-debug.texi,
|
1117
|
+
emacs/rdebug-fns.el, emacs/rdebug-layouts.el,
|
1118
|
+
emacs/rdebug-secondary.el, emacs/rdebug-track.el,
|
1119
|
+
emacs/test/test-fns.el, lib/ChangeLog, test/data/help.cmd,
|
1120
|
+
test/data/help.right, test/test-help.rb: CLI: Add long help for
|
1121
|
+
"info file".
|
1122
|
+
|
1123
|
+
test/test-help.rb: Make test failures easier to fix and more like
|
1124
|
+
the
|
1125
|
+
other tests.
|
1126
|
+
|
1127
|
+
emacs/test: finish testing all of the funcitons in rdebug-fns.el
|
1128
|
+
|
1129
|
+
rdebug-layouts.el: Make checkdoc clean.
|
1130
|
+
rdebug-track.el: don't need to rename shell buffer. Do it as an
|
1131
|
+
option only.
|
1132
|
+
rdebug-secondary.el: get rid of hoaky buffer finding for at least
|
1133
|
+
gud-comint-buf. (Should probably do others as well)
|
1134
|
+
|
1135
|
+
DOC: Note weird line stopping locations. Describe what "ctrl" in
|
1136
|
+
prompt means.
|
1137
|
+
|
1138
|
+
2008-02-23 21:55 Rocky Bernstein
|
1139
|
+
|
1140
|
+
* emacs/rdebug-fns.el, emacs/test/test-fns.el: More stringent test
|
1141
|
+
on rdebug-data-process-p. Add a unit test of this too. At least a
|
1142
|
+
start at one.
|
1143
|
+
|
1144
|
+
2008-02-22 12:57 Rocky Bernstein
|
1145
|
+
|
1146
|
+
* emacs/rdebug-annotate.el: Make gud-last-frame buffer local to all
|
1147
|
+
secondary buffers.
|
1148
|
+
|
1149
|
+
2008-02-22 12:44 Rocky Bernstein
|
1150
|
+
|
1151
|
+
* emacs/rdebug-frames.el: Set source frame arrow type (top or not)
|
1152
|
+
in processing the stack frame
|
1153
|
+
annotation. Even though there is another setting in the anotation
|
1154
|
+
filter hook, we can't remove it in main annotation filter because
|
1155
|
+
we
|
1156
|
+
can't assume annotate=3.
|
1157
|
+
|
1158
|
+
2008-02-22 09:31 Rocky Bernstein
|
1159
|
+
|
1160
|
+
* cli/ruby-debug/commands/control.rb: Need to handle glob expansion
|
1161
|
+
in program script on restart.
|
1162
|
+
File.exists? -> File.exist?
|
1163
|
+
|
1164
|
+
2008-02-22 06:50 Anders Lindgren
|
1165
|
+
|
1166
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-core.el,
|
1167
|
+
emacs/rdebug-vars.el: Process status is now in color. Renamed
|
1168
|
+
rdebug-mode-line-status to rdebug-inferior-status to be more like
|
1169
|
+
gdb-ui. Moved some complexity from rdebug-mode-line-process to a
|
1170
|
+
new function rdebug-display-inferior-status.
|
1171
|
+
|
1172
|
+
2008-02-22 02:40 Rocky Bernstein
|
1173
|
+
|
1174
|
+
* emacs/rdebug-core.el, emacs/rdebug-fns.el, emacs/rdebug-gud.el,
|
1175
|
+
emacs/rdebug-track.el, emacs/test/test-cmd.el: Add some error
|
1176
|
+
checking around gud-call - like dead or nonexistent process.
|
1177
|
+
Set gud-comint-buffer for rdebug-track
|
1178
|
+
rdebug-call -> rdebug-call-return. rdebug-call is just the call
|
1179
|
+
part.
|
1180
|
+
|
1181
|
+
2008-02-21 19:26 Rocky Bernstein
|
1182
|
+
|
1183
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-cmd.el,
|
1184
|
+
emacs/rdebug-shortkey.el: A couple of (if .. (progn ...)) turned
|
1185
|
+
into (when ...).
|
1186
|
+
|
1187
|
+
2008-02-21 19:00 Rocky Bernstein
|
1188
|
+
|
1189
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-fns.el,
|
1190
|
+
emacs/rdebug-track.el: More work on the simple rdebug-track mode
|
1191
|
+
with respect to location
|
1192
|
+
ring handling. A couple of out-and-out bugs removed.
|
1193
|
+
|
1194
|
+
2008-02-21 16:27 Rocky Bernstein
|
1195
|
+
|
1196
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-cmd.el,
|
1197
|
+
emacs/rdebug-fns.el, emacs/rdebug-gud.el, emacs/rdebug-track.el:
|
1198
|
+
Bang on rdebug-track.el to get to work better. Basically added
|
1199
|
+
gud-call-frame,
|
1200
|
+
position tracking and more common initialization for key
|
1201
|
+
bindings.
|
1202
|
+
|
1203
|
+
2008-02-21 02:56 Rocky Bernstein
|
1204
|
+
|
1205
|
+
* ChangeLog, emacs/Makefile.am, emacs/rdebug-annotate.el,
|
1206
|
+
emacs/rdebug-error.el, emacs/rdebug-fns.el,
|
1207
|
+
emacs/rdebug-frames.el, emacs/rdebug-vars.el,
|
1208
|
+
emacs/test/test-error.el, emacs/test/test-fns.el,
|
1209
|
+
emacs/test/test-indent.el, lib/ChangeLog: Fringe for frame buffer
|
1210
|
+
the same as in source code. Move
|
1211
|
+
miscellaneous small functions to a new file. Reduce duplication
|
1212
|
+
of
|
1213
|
+
"chomp" code.
|
1214
|
+
|
1215
|
+
2008-02-20 17:16 Anders Lindgren
|
1216
|
+
|
1217
|
+
* emacs/rdebug-annotate.el: Process status is now 'running',
|
1218
|
+
'stopped', 'exited', and 'crashed'. (Detecting the crash
|
1219
|
+
situation is a hack, the prompt is checked if it contains
|
1220
|
+
'post-mortem'...)
|
1221
|
+
|
1222
|
+
2008-02-20 07:09 Anders Lindgren
|
1223
|
+
|
1224
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-breaks.el,
|
1225
|
+
emacs/rdebug-core.el, emacs/rdebug-error.el,
|
1226
|
+
emacs/rdebug-frames.el, emacs/rdebug-help.el,
|
1227
|
+
emacs/rdebug-info.el, emacs/rdebug-output.el,
|
1228
|
+
emacs/rdebug-source.el, emacs/rdebug-varbuf.el,
|
1229
|
+
emacs/rdebug-vars.el, emacs/rdebug-watch.el: Debugger status is
|
1230
|
+
now displayed in the mode line of source and secondary buffers.
|
1231
|
+
|
1232
|
+
2008-02-19 23:44 Rocky Bernstein
|
1233
|
+
|
1234
|
+
* CHANGES, ChangeLog, bin/rdebug, emacs/rdebug-cmd.el,
|
1235
|
+
lib/ChangeLog: rdebug-cmd.el: M-insert toggles shortkey mode in
|
1236
|
+
the command buffer
|
1237
|
+
rdebug: search for Ruby program if file is not found and no
|
1238
|
+
SEPARATOR
|
1239
|
+
chars in the filename
|
1240
|
+
|
1241
|
+
2008-02-19 15:20 Rocky Bernstein
|
1242
|
+
|
1243
|
+
* cli/ruby-debug/commands/settings.rb,
|
1244
|
+
cli/ruby-debug/commands/show.rb, doc/ruby-debug.texi,
|
1245
|
+
test/data/ctrl.right: Add "show post-mortem". Note "show port"
|
1246
|
+
now requires 3 letters: "show por"
|
1247
|
+
to distinguish it from "show post-mortem".
|
1248
|
+
|
1249
|
+
2008-02-19 13:56 Rocky Bernstein
|
1250
|
+
|
1251
|
+
* cli/ruby-debug/interface.rb, cli/ruby-debug/processor.rb,
|
1252
|
+
emacs/rdebug-track.el: remove annotate=2. Emacs code can now
|
1253
|
+
redirect output to command or to buffer.
|
1254
|
+
rdebug-track.el
|
1255
|
+
|
1256
|
+
2008-02-18 19:56 Rocky Bernstein
|
1257
|
+
|
1258
|
+
* ChangeLog, emacs/rdebug-annotate.el, lib/ChangeLog: Frame
|
1259
|
+
switching shouldn't be recorded in position history ring.
|
1260
|
+
|
1261
|
+
2008-02-18 04:49 Rocky Bernstein
|
1262
|
+
|
1263
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-frames.el,
|
1264
|
+
emacs/rdebug-shortkey.el, emacs/rdebug-vars.el: Make
|
1265
|
+
gud-comint-buffer local in the source file.
|
1266
|
+
Frame indicator is hollow except when it's the top frame.
|
1267
|
+
|
1268
|
+
2008-02-17 23:51 Rocky Bernstein
|
1269
|
+
|
1270
|
+
* doc/emacs-notes.txt: Note as to how some of the emacs code is
|
1271
|
+
structured.
|
1272
|
+
|
1273
|
+
2008-02-17 22:45 Anders Lindgren
|
1274
|
+
|
1275
|
+
* emacs/test/test-annotate.el: Fixed broken case (rdebug-call-queue
|
1276
|
+
is now a list of lists).
|
1277
|
+
|
1278
|
+
2008-02-17 22:42 Anders Lindgren
|
1279
|
+
|
1280
|
+
* emacs/rdebug-annotate.el: Exit messages now go to the echo area.
|
1281
|
+
New command kind supported in rdebug-call-queue, :message.
|
1282
|
+
|
1283
|
+
2008-02-17 22:00 Rocky Bernstein
|
1284
|
+
|
1285
|
+
* emacs/Makefile.am, emacs/rdebug-annotate.el, emacs/rdebug-dbg.el,
|
1286
|
+
emacs/rdebug-info.el, emacs/rdebug-shortkey.el,
|
1287
|
+
emacs/rdebug-source.el, emacs/test/test-annotate.el,
|
1288
|
+
emacs/test/test-filter.el, emacs/test/test-frames.el,
|
1289
|
+
emacs/test/test-regexp.el: test-filter.el -> test-annotate.el
|
1290
|
+
Reinstate the ";;; redebug-xxx.el ends here" and ;;;
|
1291
|
+
rdebug-xxx.el --- at the
|
1292
|
+
thop.
|
1293
|
+
|
1294
|
+
2008-02-17 21:25 Rocky Bernstein
|
1295
|
+
|
1296
|
+
* emacs/Makefile.am, emacs/rdebug-shortkey.el,
|
1297
|
+
emacs/rdebug-source.el: Move short-key mode from source into
|
1298
|
+
short-key.
|
1299
|
+
Makefile.am: reduce redundancy a tad.
|
1300
|
+
|
1301
|
+
2008-02-17 17:52 Rocky Bernstein
|
1302
|
+
|
1303
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-breaks.el,
|
1304
|
+
emacs/rdebug-core.el, emacs/rdebug-frames.el,
|
1305
|
+
emacs/rdebug-help.el, emacs/rdebug-info.el,
|
1306
|
+
emacs/rdebug-output.el, emacs/rdebug-regexp.el,
|
1307
|
+
emacs/rdebug-varbuf.el, emacs/rdebug-watch.el: Replace
|
1308
|
+
rdebug--... with rdebug-. Run checkdoc and deal with some of
|
1309
|
+
those errors.
|
1310
|
+
|
1311
|
+
2008-02-17 14:56 Anders Lindgren
|
1312
|
+
|
1313
|
+
* emacs/rdebug-annotate.el, emacs/rdebug-gud.el,
|
1314
|
+
emacs/rdebug-info.el, emacs/rdebug-vars.el: The rdebug-call-queue
|
1315
|
+
system reworked, each entry is now a list of the
|
1316
|
+
command and options telling the system what it should do with the
|
1317
|
+
output. Currently, :tooltip and :info are supported, but more can
|
1318
|
+
easily be added (including support for lambda-expression, if
|
1319
|
+
needed).
|
1320
|
+
|
1321
|
+
The info buffer now only displays things if explicitly asked to
|
1322
|
+
do so.
|
1323
|
+
|
1324
|
+
Two proof-of-concept functions added,
|
1325
|
+
rdebug-pretty-print-to-buffer
|
1326
|
+
and rdebug-pretty-print-region-to-buffer. Note that the user
|
1327
|
+
interface
|
1328
|
+
might differ in the future (we don't want too many user-level
|
1329
|
+
function.)
|
1330
|
+
|
1331
|
+
The info buffer is no longer treated as accumulative, this
|
1332
|
+
simplifies
|
1333
|
+
the rdebug-cmd-XXX functions, but the user has to wait until the
|
1334
|
+
command has terminated until the output is displayed in the info
|
1335
|
+
buffer.
|
1336
|
+
|
1337
|
+
2008-02-17 13:57 Rocky Bernstein
|
1338
|
+
|
1339
|
+
* CHANGES, cli/ruby-debug/commands/info.rb, doc/ruby-debug.texi,
|
1340
|
+
lib/ruby-debug-base.rb, test/data/post-mortem.right: Add
|
1341
|
+
Debugger.last_exception. Show exception in post-mortem when "info
|
1342
|
+
program"
|
1343
|
+
is issued. Reorganize list of major changes better.
|
1344
|
+
|
1345
|
+
2008-02-17 10:35 Rocky Bernstein
|
1346
|
+
|
1347
|
+
* emacs/rdebug-breaks.el: Improve comment.
|
1348
|
+
|
1349
|
+
2008-02-17 10:32 Rocky Bernstein
|
1350
|
+
|
1351
|
+
* emacs/rdebug-breaks.el: Remove rdebug-test-test which doesn't
|
1352
|
+
seem to be used.
|
1353
|
+
|
1354
|
+
2008-02-17 03:57 Rocky Bernstein
|
1355
|
+
|
1356
|
+
* emacs/rdebug-breaks.el, emacs/rdebug-core.el: Move some
|
1357
|
+
breakpoint-related code from rdebug-core.el to rdebug-breaks.el
|
1358
|
+
|
1359
|
+
2008-02-17 02:40 Rocky Bernstein
|
1360
|
+
|
1361
|
+
* emacs/Makefile.am, emacs/rdebug-annotate.el,
|
1362
|
+
emacs/rdebug-breaks.el, emacs/rdebug-cmd.el,
|
1363
|
+
emacs/rdebug-core.el, emacs/rdebug-error.el,
|
1364
|
+
emacs/rdebug-info.el, emacs/rdebug-shortkey.el,
|
1365
|
+
emacs/rdebug-vars.el, emacs/test/test-error.el,
|
1366
|
+
emacs/test/test-filter.el, emacs/test/test-regexp.el: Create
|
1367
|
+
functions for showing temporary messages and error messages -
|
1368
|
+
don't call show-tooltip() or message() directy.
|
1369
|
+
|
1370
|
+
Break out annotations and shortkeys from rdebug-core. Break out
|
1371
|
+
filter
|
1372
|
+
test from regular-expression tests. Add chomp test.
|
1373
|
+
|
1374
|
+
2008-02-16 21:03 Anders Lindgren
|
1375
|
+
|
1376
|
+
* emacs/rdebug-core.el: The error buffer should work correctly
|
1377
|
+
again (untested)
|
1378
|
+
|
1379
|
+
2008-02-16 20:56 Anders Lindgren
|
1380
|
+
|
1381
|
+
* emacs/rdebug-core.el, emacs/rdebug-info.el,
|
1382
|
+
emacs/test/test-regexp.el: Moved handling of command output out
|
1383
|
+
from gud-rdebug-marker-filter. It
|
1384
|
+
is now handled by rdebug-cmd-XXX (which used to be located in
|
1385
|
+
rdebug-info.el.) Tooltip handling is now more robust, e.g. it
|
1386
|
+
works
|
1387
|
+
when more than one annotation is received at once, or if the
|
1388
|
+
annotation arrives in split packages.
|
1389
|
+
|
1390
|
+
In case the external process echoes the command, it is stipped
|
1391
|
+
away
|
1392
|
+
before it is presented as a tooltip.
|
1393
|
+
|
1394
|
+
Test of filter function reworked. New cases added to handle
|
1395
|
+
command
|
1396
|
+
output. All filter tests are now tested twice, once when the
|
1397
|
+
entire
|
1398
|
+
block is sent at once, one where the block is sent in character
|
1399
|
+
by
|
1400
|
+
character.
|
1401
|
+
|
1402
|
+
2008-02-16 17:38 Rocky Bernstein
|
1403
|
+
|
1404
|
+
* emacs/Makefile.am, emacs/rdebug-cmd.el, emacs/rdebug-core.el,
|
1405
|
+
emacs/test/test-indent.el: Add routine to go to a particular
|
1406
|
+
history location. Break out command buffer
|
1407
|
+
things into its own file.
|
1408
|
+
|
1409
|
+
2008-02-16 13:47 Rocky Bernstein
|
1410
|
+
|
1411
|
+
* emacs/rdebug-core.el: Show ring number when moving positions.
|
1412
|
+
|
1413
|
+
2008-02-16 04:18 Rocky Bernstein
|
1414
|
+
|
1415
|
+
* emacs/rdebug-core.el, emacs/rdebug-source.el,
|
1416
|
+
emacs/rdebug-vars.el, emacs/rdebug.el: Save stopping points and
|
1417
|
+
give a way to move around in them.
|
1418
|
+
|
1419
|
+
2008-02-13 21:47 Rocky Bernstein
|
1420
|
+
|
1421
|
+
* ChangeLog, cli/ruby-debug/processor.rb, lib/ChangeLog:
|
1422
|
+
processor.rb: spelled "post-mortem" incorrectly in prompt.
|
1423
|
+
|
1424
|
+
2008-02-13 17:58 Rocky Bernstein
|
1425
|
+
|
1426
|
+
* emacs/rdebug-core.el, emacs/rdebug-regexp.el,
|
1427
|
+
emacs/rdebug-track.el: Use rdebug-input-prompt-regexp rather than
|
1428
|
+
duplicate strings. Set comint-next/previous-prompt
|
1429
|
+
|
1430
|
+
2008-02-13 17:32 Rocky Bernstein
|
1431
|
+
|
1432
|
+
* ChangeLog, emacs/rdebug-core.el, lib/ChangeLog: Set up keys for
|
1433
|
+
comint-next-prompt and comint-previous-prompt.
|
1434
|
+
|
1435
|
+
2008-02-13 13:08 Rocky Bernstein
|
1436
|
+
|
1437
|
+
* Rakefile: Newer rubygems depricates Gem::Platform::WIN32
|
1438
|
+
|
1439
|
+
2008-02-13 03:47 Rocky Bernstein
|
1440
|
+
|
1441
|
+
* emacs/rdebug-core.el, emacs/rdebug-gud.el, emacs/rdebug-vars.el:
|
1442
|
+
Add ability to show print output as a tooltip. This is more a
|
1443
|
+
proof-of-concept than a finished product.
|
1444
|
+
|
1445
|
+
2008-02-12 05:34 Anders Lindgren
|
1446
|
+
|
1447
|
+
* emacs/rdebug-core.el: Better documentation for
|
1448
|
+
rdebug-non-annotated-text-kind.
|
1449
|
+
|
1450
|
+
2008-02-12 02:06 Rocky Bernstein
|
1451
|
+
|
1452
|
+
* ChangeLog, cli/ruby-debug/commands/frame.rb,
|
1453
|
+
cli/ruby-debug/commands/info.rb, doc/ruby-debug.texi,
|
1454
|
+
lib/ChangeLog, test/data/info-thread.right, test/thread1.rb: Fix
|
1455
|
+
bug in "info thread verbose" which wasn't showing full traceback.
|
1456
|
+
|
1457
|
+
2008-02-11 02:29 Rocky Bernstein
|
1458
|
+
|
1459
|
+
* cli/ruby-debug/commands/frame.rb,
|
1460
|
+
cli/ruby-debug/commands/info.rb,
|
1461
|
+
cli/ruby-debug/commands/threads.rb, doc/ruby-debug.texi,
|
1462
|
+
test/data/ctrl.right, test/data/info-thread.cmd,
|
1463
|
+
test/data/info-thread.right, test/data/info.right,
|
1464
|
+
test/test-info-thread.rb: Add "info thread". Pound on "info
|
1465
|
+
threads" to make it more like
|
1466
|
+
pydb. In particular we can give stack traces for the threads.
|
1467
|
+
Towards
|
1468
|
+
addressing issue #12663.
|
1469
|
+
|
1470
|
+
2008-02-10 20:46 Rocky Bernstein
|
1471
|
+
|
1472
|
+
* emacs/rdebug-info.el, emacs/rdebug-source.el: Add key to get to
|
1473
|
+
Info buffer. Add "pl" to list of print commands.
|
1474
|
+
|
1475
|
+
2008-02-10 17:46 Rocky Bernstein
|
1476
|
+
|
1477
|
+
* Rakefile, emacs/Makefile.am, emacs/rdebug-core.el: Makefile.am,
|
1478
|
+
rdebug-core.el: require/add rdebug-info.el
|
1479
|
+
Rakefile: some indentation
|
1480
|
+
|
1481
|
+
2008-02-10 16:06 Anders Lindgren
|
1482
|
+
|
1483
|
+
* emacs/rdebug-info.el: Got rid of warning. (Had to disabled it the
|
1484
|
+
hard way since rdebug-info calls a function in rdebug-core, but
|
1485
|
+
can't require it because that would lead to cyclic requires.)
|
1486
|
+
|
1487
|
+
2008-02-10 16:01 Anders Lindgren
|
1488
|
+
|
1489
|
+
* emacs/rdebug-breaks.el, emacs/rdebug-core.el,
|
1490
|
+
emacs/rdebug-info.el, emacs/rdebug-layouts.el,
|
1491
|
+
emacs/rdebug-output.el, emacs/rdebug-vars.el,
|
1492
|
+
emacs/test/test-indent.el: New secondary window 'info', which
|
1493
|
+
displays output of events and
|
1494
|
+
certain commands. The non-annotated-text system reworked to
|
1495
|
+
handle
|
1496
|
+
this. This should be seen as a proof of concept that we can pick
|
1497
|
+
up
|
1498
|
+
the output of, say, "pp". The end result could very well differ
|
1499
|
+
quite
|
1500
|
+
a lot from what we have now.
|
1501
|
+
|
1502
|
+
New variable 'rdebug-accumulative-buffer', true for buffers that
|
1503
|
+
grow.
|
1504
|
+
Currently "output" and "info".
|
1505
|
+
|
1506
|
+
2008-02-10 01:39 Rocky Bernstein
|
1507
|
+
|
1508
|
+
* emacs/rdebug-gud.el, emacs/rdebug-source.el,
|
1509
|
+
emacs/rdebug-varbuf.el: Add more variations of print commands:
|
1510
|
+
pl, ps, pp, and p.
|
1511
|
+
|
1512
|
+
2008-02-09 22:20 Anders Lindgren
|
1513
|
+
|
1514
|
+
* emacs/rdebug-core.el, emacs/rdebug-layouts.el,
|
1515
|
+
emacs/rdebug-source.el, emacs/rdebug.el: * New window layout "no
|
1516
|
+
shell". This is the "standard" layout with the
|
1517
|
+
"watch" window instead of the "debugger shell" window.
|
1518
|
+
|
1519
|
+
* Fixed a problem where the Watch window was not initialized
|
1520
|
+
properly
|
1521
|
+
until the first annotation arrived.
|
1522
|
+
|
1523
|
+
* Fixed a problem where we created far too many buffers, e.g
|
1524
|
+
*rdebug-stopping-test.rb* and *rdebug--test.rb*.
|
1525
|
+
|
1526
|
+
2008-02-09 16:24 Anders Lindgren
|
1527
|
+
|
1528
|
+
* emacs/rdebug-frames.el, emacs/rdebug-layouts.el,
|
1529
|
+
emacs/test/test-indent.el: Indentation fixes, plus adding all
|
1530
|
+
rdebug-xxx.el files to the list of files to check.
|
1531
|
+
|
1532
|
+
2008-02-09 15:48 Rocky Bernstein
|
1533
|
+
|
1534
|
+
* ChangeLog, lib/ChangeLog, test/data/break-bad.cmd,
|
1535
|
+
test/data/break-bad.right, test/data/break_bad.cmd,
|
1536
|
+
test/data/break_bad.right, test/data/emacs-basic.cmd,
|
1537
|
+
test/data/emacs-basic.right, test/data/emacs_basic.cmd,
|
1538
|
+
test/data/emacs_basic.right, test/helper.rb,
|
1539
|
+
test/test-break-bad.rb, test/test-emacs-basic.rb: helper.rb
|
1540
|
+
Failed attempt to DRY tests more. But save what we have
|
1541
|
+
which may someday in the future be used to go further. Minus to
|
1542
|
+
undercore in Data file names in preparation such time. (We'll use
|
1543
|
+
the
|
1544
|
+
filename as the test name).
|
1545
|
+
|
1546
|
+
testing
|
1547
|
+
|
1548
|
+
2008-02-09 11:55 Rocky Bernstein
|
1549
|
+
|
1550
|
+
* ext/ruby_debug.c, test/data/post-mortem-next.cmd,
|
1551
|
+
test/data/post-mortem-next.right, test/data/post-mortem.cmd,
|
1552
|
+
test/data/post-mortem.right, test/test-pm.rb: Fix bug where we
|
1553
|
+
entered debugger code if we "next" over code that
|
1554
|
+
goes raises an uncaught exception. Needed to reset stepping
|
1555
|
+
parameters. Added a routine to do so.
|
1556
|
+
|
1557
|
+
2008-02-08 02:09 Rocky Bernstein
|
1558
|
+
|
1559
|
+
* INSTALL.SVN: Add instructions for building on MS Windows.
|
1560
|
+
|
1561
|
+
2008-02-06 18:15 Rocky Bernstein
|
1562
|
+
|
1563
|
+
* emacs/rdebug-breaks.el, emacs/rdebug-core.el,
|
1564
|
+
emacs/rdebug-gud.el, emacs/rdebug-source.el,
|
1565
|
+
emacs/rdebug-varbuf.el: Add routines to print a marked expression
|
1566
|
+
or a variable in the
|
1567
|
+
variables buffer. Not perfect but it's a start in the right
|
1568
|
+
direction.
|
1569
|
+
Add key bindings for this and to print a region selected via the
|
1570
|
+
mouse.
|
1571
|
+
|
1572
|
+
2008-02-06 16:15 Rocky Bernstein
|
1573
|
+
|
1574
|
+
* ChangeLog, emacs/Makefile.am, emacs/rdebug-gud.el,
|
1575
|
+
emacs/test/test-gud.el, lib/ChangeLog: Add 'nowarn to
|
1576
|
+
find-file-noselect and test that we don't get a warning.
|
1577
|
+
|
1578
|
+
2008-02-05 16:30 Rocky Bernstein
|
1579
|
+
|
1580
|
+
* cli/ruby-debug/interface.rb: Remove "* used as prefix argument"
|
1581
|
+
warning.
|
1582
|
+
|
1583
|
+
2008-02-05 07:52 Anders Lindgren
|
1584
|
+
|
1585
|
+
* emacs/rdebug-layouts.el, emacs/rdebug-source.el: Added 'Separate
|
1586
|
+
I/O buffer' to options menu. The window layouts now create an
|
1587
|
+
output buffer only when separate io buffer is enabled.
|
1588
|
+
|
1589
|
+
2008-02-05 01:41 Rocky Bernstein
|
1590
|
+
|
1591
|
+
* ChangeLog, emacs/rdebug-track.el, emacs/rdebug.el, lib/ChangeLog,
|
1592
|
+
test/data/setshow.cmd, test/data/setshow.right: rdebug.el: Add a
|
1593
|
+
defgroup for rdebug so customization in Emacs 23 is possible.
|
1594
|
+
Some other minor doc fixes.
|
1595
|
+
setshow.* make sure we don't have an $Id line that we have to
|
1596
|
+
check against.
|
1597
|
+
|
1598
|
+
2008-02-04 21:50 Anders Lindgren
|
1599
|
+
|
1600
|
+
* emacs/rdebug-core.el, emacs/rdebug.el: New variable
|
1601
|
+
'rdebug-use-separate-io-buffer' controls if output should go to
|
1602
|
+
shell window or the output window. Contiuous output can now be
|
1603
|
+
received from a running process. 'gud-rdebug-marker-filter'
|
1604
|
+
totally reworked (again) -- introduced the concept of one-liners
|
1605
|
+
and a new helper function.
|
1606
|
+
|
1607
|
+
2008-02-03 20:26 Anders Lindgren
|
1608
|
+
|
1609
|
+
* emacs/rdebug-core.el, emacs/rdebug-regexp.el: Annotation filter
|
1610
|
+
reworked. comint-process-echoes is now set, so that the user
|
1611
|
+
commands aren't printed twice. 'quit' now works correcty, and the
|
1612
|
+
stack frame window shows the correct content when post-mortem is
|
1613
|
+
entered.
|
1614
|
+
|
1615
|
+
2008-02-03 15:23 Rocky Bernstein
|
1616
|
+
|
1617
|
+
* ChangeLog, Rakefile, doc/ruby-debug.texi, lib/ChangeLog,
|
1618
|
+
test/annotate.cmd, test/annotate.right, test/break-bad.cmd,
|
1619
|
+
test/break-bad.right, test/breakpoints.cmd,
|
1620
|
+
test/breakpoints.right, test/condition.cmd, test/condition.right,
|
1621
|
+
test/ctrl.cmd, test/ctrl.right, test/data,
|
1622
|
+
test/data/annotate.cmd, test/data/annotate.right,
|
1623
|
+
test/data/break-bad.cmd, test/data/break-bad.right,
|
1624
|
+
test/data/breakpoints.cmd, test/data/breakpoints.right,
|
1625
|
+
test/data/condition.cmd, test/data/condition.right,
|
1626
|
+
test/data/ctrl.cmd, test/data/ctrl.right, test/data/display.cmd,
|
1627
|
+
test/data/display.right, test/data/dollar-0.right,
|
1628
|
+
test/data/dollar-0a.right, test/data/dollar-0b.right,
|
1629
|
+
test/data/edit.cmd, test/data/edit.right,
|
1630
|
+
test/data/emacs-basic.cmd, test/data/emacs-basic.right,
|
1631
|
+
test/data/enable.cmd, test/data/enable.right,
|
1632
|
+
test/data/frame.cmd, test/data/frame.right, test/data/help.cmd,
|
1633
|
+
test/data/help.right, test/data/history.right,
|
1634
|
+
test/data/info-var-bug2.cmd, test/data/info-var-bug2.right,
|
1635
|
+
test/data/info-var.cmd, test/data/info-var.right,
|
1636
|
+
test/data/info.cmd, test/data/info.right, test/data/noquit.right,
|
1637
|
+
test/data/output.cmd, test/data/output.right,
|
1638
|
+
test/data/post-mortem.cmd, test/data/post-mortem.right,
|
1639
|
+
test/data/quit.cmd, test/data/quit.right, test/data/raise.cmd,
|
1640
|
+
test/data/raise.right, test/data/setshow.cmd,
|
1641
|
+
test/data/setshow.right, test/data/source.cmd,
|
1642
|
+
test/data/source.right, test/data/stepping.cmd,
|
1643
|
+
test/data/stepping.right, test/data/test-init.right,
|
1644
|
+
test/display.cmd, test/display.right, test/dollar-0.right,
|
1645
|
+
test/dollar-0a.right, test/dollar-0b.right, test/edit.cmd,
|
1646
|
+
test/edit.right, test/emacs-basic.cmd, test/emacs-basic.right,
|
1647
|
+
test/enable.cmd, test/enable.right, test/frame.cmd,
|
1648
|
+
test/frame.right, test/help.cmd, test/help.right, test/helper.rb,
|
1649
|
+
test/history.right, test/info-var-bug2.cmd,
|
1650
|
+
test/info-var-bug2.right, test/info-var.cmd, test/info-var.right,
|
1651
|
+
test/info.cmd, test/info.right, test/noquit.right,
|
1652
|
+
test/output.cmd, test/output.right, test/post-mortem.cmd,
|
1653
|
+
test/post-mortem.right, test/quit.cmd, test/quit.right,
|
1654
|
+
test/raise.cmd, test/raise.right, test/setshow.cmd,
|
1655
|
+
test/setshow.right, test/source.cmd, test/source.right,
|
1656
|
+
test/stepping.cmd, test/stepping.right, test/test-annotate.rb,
|
1657
|
+
test/test-break-bad.rb, test/test-breakpoints.rb,
|
1658
|
+
test/test-condition.rb, test/test-ctrl.rb, test/test-display.rb,
|
1659
|
+
test/test-dollar-0.rb, test/test-edit.rb,
|
1660
|
+
test/test-emacs-basic.rb, test/test-enable.rb,
|
1661
|
+
test/test-frame.rb, test/test-help.rb, test/test-hist.rb,
|
1662
|
+
test/test-info-var.rb, test/test-info.rb, test/test-init.rb,
|
1663
|
+
test/test-init.right, test/test-output.rb, test/test-pm.rb,
|
1664
|
+
test/test-quit.rb, test/test-raise.rb, test/test-setshow.rb,
|
1665
|
+
test/test-source.rb, test/test-stepping.rb: Try to get testing a
|
1666
|
+
little more organized, although more work should
|
1667
|
+
be done: Create a data directory for comparison ("right") and
|
1668
|
+
script
|
1669
|
+
command ("cmd") files. Code is now more uniform (and should DRY'd
|
1670
|
+
a
|
1671
|
+
bit more).
|
1672
|
+
|
1673
|
+
2008-02-03 12:34 Rocky Bernstein
|
1674
|
+
|
1675
|
+
* doc/ruby-debug.texi: Remove Debugger.init. Expand Debugger.start,
|
1676
|
+
Debugger.stop and Debugger.started?
|
1677
|
+
|
1678
|
+
2008-02-03 04:17 Rocky Bernstein
|
1679
|
+
|
1680
|
+
* cli/ruby-debug/commands/catchpoint.rb,
|
1681
|
+
cli/ruby-debug/commands/info.rb, test/raise.cmd,
|
1682
|
+
test/raise.right: Add some argument checking in setting
|
1683
|
+
catchpoints.
|
1684
|
+
Showing status on "info catch" is a little silly - we can't
|