debugger 1.2.4 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +14 -0
- data/.travis.yml +0 -1
- data/CHANGELOG.md +9 -0
- data/Gemfile +3 -0
- data/README.md +2 -0
- data/Rakefile +3 -55
- data/debugger.gemspec +2 -0
- data/lib/debugger/version.rb +1 -1
- data/lib/ruby-debug-base.rb +3 -1
- data/lib/ruby-debug/commands/irb.rb +1 -1
- data/lib/ruby-debug/commands/jump.rb +1 -1
- data/lib/ruby-debug/commands/method.rb +1 -1
- data/lib/ruby-debug/commands/show.rb +1 -1
- data/lib/ruby-debug/commands/trace.rb +2 -2
- data/lib/ruby-debug/commands/variables.rb +3 -3
- data/test/breakpoints_test.rb +365 -0
- data/test/conditions_test.rb +76 -0
- data/test/continue_test.rb +28 -0
- data/test/display_test.rb +141 -0
- data/test/edit_test.rb +55 -0
- data/test/eval_test.rb +92 -0
- data/test/examples/breakpoint1.rb +15 -0
- data/test/examples/breakpoint2.rb +7 -0
- data/test/examples/conditions.rb +4 -0
- data/test/examples/continue.rb +4 -0
- data/test/examples/display.rb +5 -0
- data/test/examples/edit.rb +3 -0
- data/test/examples/edit2.rb +3 -0
- data/test/examples/eval.rb +4 -0
- data/test/examples/finish.rb +20 -0
- data/test/examples/frame.rb +31 -0
- data/test/examples/help.rb +2 -0
- data/test/examples/info.rb +48 -0
- data/test/examples/info2.rb +3 -0
- data/test/examples/irb.rb +6 -0
- data/test/examples/jump.rb +14 -0
- data/test/examples/kill.rb +2 -0
- data/test/examples/list.rb +12 -0
- data/test/examples/method.rb +15 -0
- data/test/examples/post_mortem.rb +19 -0
- data/test/examples/quit.rb +2 -0
- data/test/examples/reload.rb +6 -0
- data/test/examples/restart.rb +6 -0
- data/test/examples/save.rb +3 -0
- data/test/examples/set.rb +3 -0
- data/test/examples/set_annotate.rb +12 -0
- data/test/examples/settings.rb +1 -0
- data/test/examples/show.rb +2 -0
- data/test/examples/source.rb +3 -0
- data/test/examples/stepping.rb +21 -0
- data/test/examples/thread.rb +32 -0
- data/test/examples/tmate.rb +10 -0
- data/test/examples/trace.rb +7 -0
- data/test/examples/trace_threads.rb +20 -0
- data/test/examples/variables.rb +26 -0
- data/test/finish_test.rb +48 -0
- data/test/frame_test.rb +140 -0
- data/test/help_test.rb +50 -0
- data/test/info_test.rb +325 -0
- data/test/irb_test.rb +81 -0
- data/test/jump_test.rb +70 -0
- data/test/kill_test.rb +47 -0
- data/test/list_test.rb +145 -0
- data/test/method_test.rb +70 -0
- data/test/post_mortem_test.rb +25 -0
- data/test/quit_test.rb +55 -0
- data/test/reload_test.rb +43 -0
- data/test/restart_test.rb +143 -0
- data/test/save_test.rb +92 -0
- data/test/set_test.rb +163 -0
- data/test/show_test.rb +292 -0
- data/test/source_test.rb +44 -0
- data/test/stepping_test.rb +118 -0
- data/test/support/breakpoint.rb +12 -0
- data/test/support/context.rb +14 -0
- data/test/support/matchers.rb +67 -0
- data/test/support/mocha_extensions.rb +71 -0
- data/test/support/processor.rb +7 -0
- data/test/support/test_dsl.rb +205 -0
- data/test/support/test_interface.rb +66 -0
- data/test/test_helper.rb +8 -0
- data/test/thread_test.rb +122 -0
- data/test/tmate_test.rb +43 -0
- data/test/trace_test.rb +154 -0
- data/test/variables_test.rb +114 -0
- metadata +107 -158
- data/test/base/base.rb +0 -71
- data/test/base/binding.rb +0 -24
- data/test/base/catchpoint.rb +0 -22
- data/test/base/load.rb +0 -36
- data/test/bp_loop_issue.rb +0 -3
- data/test/classes.rb +0 -11
- data/test/config.yaml +0 -8
- data/test/data/annotate.cmd +0 -29
- data/test/data/annotate.right +0 -139
- data/test/data/break_bad.cmd +0 -18
- data/test/data/break_bad.right +0 -28
- data/test/data/break_loop_bug.cmd +0 -5
- data/test/data/break_loop_bug.right +0 -15
- data/test/data/breakpoints.cmd +0 -38
- data/test/data/breakpoints.right +0 -98
- data/test/data/catch.cmd +0 -20
- data/test/data/catch.right +0 -49
- data/test/data/catch2.cmd +0 -19
- data/test/data/catch2.right +0 -65
- data/test/data/catch3.cmd +0 -11
- data/test/data/catch3.right +0 -37
- data/test/data/condition.cmd +0 -28
- data/test/data/condition.right +0 -65
- data/test/data/ctrl.cmd +0 -23
- data/test/data/ctrl.right +0 -70
- data/test/data/display.cmd +0 -24
- data/test/data/display.right +0 -44
- data/test/data/dollar-0.right +0 -2
- data/test/data/dollar-0a.right +0 -2
- data/test/data/dollar-0b.right +0 -2
- data/test/data/edit.cmd +0 -12
- data/test/data/edit.right +0 -19
- data/test/data/emacs_basic.cmd +0 -43
- data/test/data/emacs_basic.right +0 -106
- data/test/data/enable.cmd +0 -20
- data/test/data/enable.right +0 -36
- data/test/data/finish.cmd +0 -16
- data/test/data/finish.right +0 -31
- data/test/data/frame.cmd +0 -26
- data/test/data/frame.right +0 -55
- data/test/data/help.cmd +0 -20
- data/test/data/help.right +0 -21
- data/test/data/history.right +0 -7
- data/test/data/info-thread.cmd +0 -13
- data/test/data/info-thread.right +0 -37
- data/test/data/info-var-bug2.cmd +0 -5
- data/test/data/info-var-bug2.right +0 -10
- data/test/data/info-var.cmd +0 -23
- data/test/data/info-var.right +0 -52
- data/test/data/info.cmd +0 -21
- data/test/data/info.right +0 -65
- data/test/data/jump.cmd +0 -16
- data/test/data/jump.right +0 -56
- data/test/data/jump2.cmd +0 -16
- data/test/data/jump2.right +0 -44
- data/test/data/linetrace.cmd +0 -6
- data/test/data/linetrace.right +0 -23
- data/test/data/list.cmd +0 -19
- data/test/data/list.right +0 -127
- data/test/data/method.cmd +0 -10
- data/test/data/method.right +0 -21
- data/test/data/methodsig.cmd +0 -10
- data/test/data/methodsig.right +0 -20
- data/test/data/next.cmd +0 -22
- data/test/data/next.right +0 -61
- data/test/data/noquit.right +0 -1
- data/test/data/output.cmd +0 -6
- data/test/data/output.right +0 -31
- data/test/data/pm-bug.cmd +0 -7
- data/test/data/pm-bug.right +0 -12
- data/test/data/post-mortem-next.cmd +0 -8
- data/test/data/post-mortem-next.right +0 -14
- data/test/data/post-mortem-osx.right +0 -31
- data/test/data/post-mortem.cmd +0 -13
- data/test/data/post-mortem.right +0 -32
- data/test/data/quit.cmd +0 -6
- data/test/data/quit.right +0 -0
- data/test/data/raise.cmd +0 -11
- data/test/data/raise.right +0 -23
- data/test/data/save.cmd +0 -34
- data/test/data/save.right +0 -59
- data/test/data/scope-var.cmd +0 -42
- data/test/data/scope-var.right +0 -587
- data/test/data/setshow.cmd +0 -56
- data/test/data/setshow.right +0 -98
- data/test/data/source.cmd +0 -5
- data/test/data/source.right +0 -15
- data/test/data/stepping.cmd +0 -21
- data/test/data/stepping.right +0 -50
- data/test/data/test-init-cygwin.right +0 -7
- data/test/data/test-init-osx.right +0 -4
- data/test/data/test-init.right +0 -5
- data/test/data/trace.right +0 -14
- data/test/dollar-0.rb +0 -5
- data/test/gcd-dbg-nox.rb +0 -30
- data/test/gcd-dbg.rb +0 -29
- data/test/gcd.rb +0 -18
- data/test/helper.rb +0 -142
- data/test/info-var-bug.rb +0 -47
- data/test/info-var-bug2.rb +0 -2
- data/test/jump.rb +0 -14
- data/test/jump2.rb +0 -27
- data/test/lib/commands/catchpoint_test.rb +0 -28
- data/test/lib/commands/unit/regexp.rb +0 -38
- data/test/next.rb +0 -18
- data/test/null.rb +0 -1
- data/test/output.rb +0 -2
- data/test/pm-base.rb +0 -17
- data/test/pm-bug.rb +0 -3
- data/test/pm-catch.rb +0 -12
- data/test/pm-catch2.rb +0 -27
- data/test/pm-catch3.rb +0 -47
- data/test/pm.rb +0 -11
- data/test/raise.rb +0 -3
- data/test/rdebug-save.1 +0 -7
- data/test/runall +0 -12
- data/test/scope-var.rb +0 -29
- data/test/tdebug.rb +0 -246
- data/test/test-annotate.rb +0 -24
- data/test/test-break-bad.rb +0 -36
- data/test/test-breakpoints.rb +0 -24
- data/test/test-catch.rb +0 -24
- data/test/test-catch2.rb +0 -24
- data/test/test-catch3.rb +0 -24
- data/test/test-condition.rb +0 -24
- data/test/test-ctrl.rb +0 -51
- data/test/test-display.rb +0 -25
- data/test/test-dollar-0.rb +0 -39
- data/test/test-edit.rb +0 -25
- data/test/test-emacs-basic.rb +0 -25
- data/test/test-enable.rb +0 -24
- data/test/test-finish.rb +0 -33
- data/test/test-frame.rb +0 -33
- data/test/test-help.rb +0 -54
- data/test/test-hist.rb +0 -65
- data/test/test-info-thread.rb +0 -31
- data/test/test-info-var.rb +0 -46
- data/test/test-info.rb +0 -25
- data/test/test-init.rb +0 -43
- data/test/test-jump.rb +0 -34
- data/test/test-list.rb +0 -24
- data/test/test-method.rb +0 -33
- data/test/test-next.rb +0 -24
- data/test/test-output.rb +0 -25
- data/test/test-quit.rb +0 -29
- data/test/test-raise.rb +0 -24
- data/test/test-remote.rb +0 -14
- data/test/test-save.rb +0 -30
- data/test/test-scope-var.rb +0 -24
- data/test/test-setshow.rb +0 -24
- data/test/test-source.rb +0 -24
- data/test/test-stepping.rb +0 -25
- data/test/test-trace.rb +0 -46
- data/test/thread1.rb +0 -25
- data/test/trunc-call.rb +0 -30
data/test/data/method.cmd
DELETED
data/test/data/method.right
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
classes.rb:1
|
2
|
-
class Mine
|
3
|
-
# # ********************************************************
|
4
|
-
# # This tests the 'method' command
|
5
|
-
# # ********************************************************
|
6
|
-
# set debuggertesting on
|
7
|
-
Currently testing the debugger is on.
|
8
|
-
# set autoeval off
|
9
|
-
autoeval is off.
|
10
|
-
# b 11
|
11
|
-
Breakpoint 1 file ./classes.rb, line 11
|
12
|
-
# c
|
13
|
-
Breakpoint 1 at classes.rb:11
|
14
|
-
classes.rb:11
|
15
|
-
metoo = Mine(new)
|
16
|
-
# method Mine
|
17
|
-
mymethod
|
18
|
-
|
19
|
-
# m iv me
|
20
|
-
@myvar = "init"
|
21
|
-
# quit
|
data/test/data/methodsig.cmd
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
# ********************************************************
|
2
|
-
# This tests the 'method' command
|
3
|
-
# ********************************************************
|
4
|
-
set debuggertesting on
|
5
|
-
set autoeval off
|
6
|
-
b 3
|
7
|
-
c
|
8
|
-
method sig initialize
|
9
|
-
method sig mymethod
|
10
|
-
quit
|
data/test/data/methodsig.right
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
classes.rb:1
|
2
|
-
class Mine
|
3
|
-
# # ********************************************************
|
4
|
-
# # This tests the 'method' command
|
5
|
-
# # ********************************************************
|
6
|
-
# set debuggertesting on
|
7
|
-
Currently testing the debugger is on.
|
8
|
-
# set autoeval off
|
9
|
-
autoeval is off.
|
10
|
-
# b 3
|
11
|
-
Breakpoint 1 file ./classes.rb, line 3
|
12
|
-
# c
|
13
|
-
Breakpoint 1 at classes.rb:3
|
14
|
-
classes.rb:3
|
15
|
-
@myvar = 'init'
|
16
|
-
# method sig initialize
|
17
|
-
Mine#initialize()
|
18
|
-
# method sig mymethod
|
19
|
-
Mine#mymethod(a, b=5, &block)
|
20
|
-
# quit
|
data/test/data/next.cmd
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
# ********************************************************
|
2
|
-
# This tests next command and break at proc def
|
3
|
-
# ********************************************************
|
4
|
-
set debuggertesting on
|
5
|
-
set callstyle last
|
6
|
-
set force off
|
7
|
-
break 1
|
8
|
-
next
|
9
|
-
next
|
10
|
-
next
|
11
|
-
next
|
12
|
-
next
|
13
|
-
next
|
14
|
-
next
|
15
|
-
next
|
16
|
-
next
|
17
|
-
next
|
18
|
-
next
|
19
|
-
next
|
20
|
-
next
|
21
|
-
next
|
22
|
-
next
|
data/test/data/next.right
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
next.rb:1
|
2
|
-
def foo
|
3
|
-
# # ********************************************************
|
4
|
-
# # This tests next command and break at proc def
|
5
|
-
# # ********************************************************
|
6
|
-
# set debuggertesting on
|
7
|
-
Currently testing the debugger is on.
|
8
|
-
# set callstyle last
|
9
|
-
Frame call-display style is last.
|
10
|
-
# set force off
|
11
|
-
force-stepping is off.
|
12
|
-
# break 1
|
13
|
-
Breakpoint 1 file ./next.rb, line 1
|
14
|
-
# next
|
15
|
-
next.rb:7
|
16
|
-
a = 1
|
17
|
-
# next
|
18
|
-
next.rb:8
|
19
|
-
if a == 1
|
20
|
-
# next
|
21
|
-
next.rb:9
|
22
|
-
a += 2
|
23
|
-
# next
|
24
|
-
next.rb:10
|
25
|
-
puts a
|
26
|
-
# next
|
27
|
-
3
|
28
|
-
next.rb:12
|
29
|
-
foo
|
30
|
-
# next
|
31
|
-
Breakpoint 1 at next.rb:1
|
32
|
-
next.rb:1
|
33
|
-
def foo
|
34
|
-
# next
|
35
|
-
next.rb:2
|
36
|
-
a = 1
|
37
|
-
# next
|
38
|
-
next.rb:3
|
39
|
-
puts "Stop here"
|
40
|
-
# next
|
41
|
-
Stop here
|
42
|
-
next.rb:4
|
43
|
-
b = 2
|
44
|
-
# next
|
45
|
-
next.rb:13
|
46
|
-
b = 2
|
47
|
-
# next
|
48
|
-
next.rb:14
|
49
|
-
b += 2
|
50
|
-
# next
|
51
|
-
next.rb:15
|
52
|
-
puts "one"
|
53
|
-
# next
|
54
|
-
one
|
55
|
-
next.rb:16
|
56
|
-
c = 4
|
57
|
-
# next
|
58
|
-
next.rb:17
|
59
|
-
puts "two"
|
60
|
-
# next
|
61
|
-
two
|
data/test/data/noquit.right
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
The program has finished and will be restarted.
|
data/test/data/output.cmd
DELETED
data/test/data/output.right
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
starting
|
2
|
-
stopped
|
3
|
-
breakpoints
|
4
|
-
No breakpoints.
|
5
|
-
|
6
|
-
stack
|
7
|
-
--> #0 at line ./output.rb:1
|
8
|
-
|
9
|
-
variables
|
10
|
-
self = main
|
11
|
-
|
12
|
-
source ./output.rb:1
|
13
|
-
puts "one"
|
14
|
-
# # ********************************************************
|
15
|
-
# # This tests the "starting" annotation
|
16
|
-
# # ********************************************************
|
17
|
-
# step
|
18
|
-
starting
|
19
|
-
one
|
20
|
-
stopped
|
21
|
-
stack
|
22
|
-
--> #0 at line ./output.rb:2
|
23
|
-
|
24
|
-
variables
|
25
|
-
self = main
|
26
|
-
|
27
|
-
source ./output.rb:2
|
28
|
-
puts "two"
|
29
|
-
# step
|
30
|
-
starting
|
31
|
-
two
|
data/test/data/pm-bug.cmd
DELETED
data/test/data/pm-bug.right
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
pm-bug.rb:1
|
2
|
-
a = 1
|
3
|
-
# # ********************************************************
|
4
|
-
# # This tests the edit command
|
5
|
-
# # ********************************************************
|
6
|
-
# set debuggertesting on
|
7
|
-
Currently testing the debugger is on.
|
8
|
-
# # Tracker #22118
|
9
|
-
# i v
|
10
|
-
a = nil
|
11
|
-
self = main
|
12
|
-
# quit
|
@@ -1,14 +0,0 @@
|
|
1
|
-
pm.rb:3
|
2
|
-
def zero_div
|
3
|
-
# # ******************************************************
|
4
|
-
# # This tests running "next" over code that post-mortems
|
5
|
-
# # ******************************************************
|
6
|
-
# set debuggertesting on
|
7
|
-
Currently testing the debugger is on.
|
8
|
-
# next 2
|
9
|
-
pm.rb:8
|
10
|
-
zero_div
|
11
|
-
# next
|
12
|
-
pm.rb:5
|
13
|
-
1/0
|
14
|
-
# quit
|
@@ -1,31 +0,0 @@
|
|
1
|
-
pm.rb:3
|
2
|
-
def zero_div
|
3
|
-
# # ***************************************************
|
4
|
-
# # This tests post-mortem handling.
|
5
|
-
# # ***************************************************
|
6
|
-
# set debuggertesting on
|
7
|
-
Currently testing the debugger is on.
|
8
|
-
# continue
|
9
|
-
pm.rb:5
|
10
|
-
1/0
|
11
|
-
# # Should have got a divide by 0 error
|
12
|
-
# info program
|
13
|
-
The program crashed.
|
14
|
-
Exception: #<ZeroDivisionError: divided by 0>
|
15
|
-
# where
|
16
|
-
--> #0 / at line pm.rb:5
|
17
|
-
#1 at line pm.rb:8
|
18
|
-
# up
|
19
|
-
#1 at line pm.rb:8
|
20
|
-
# p x
|
21
|
-
2
|
22
|
-
# help
|
23
|
-
Type 'help <command-name>' for help on a specific command
|
24
|
-
|
25
|
-
Available commands:
|
26
|
-
backtrace delete edit frame list ps restart source undisplay
|
27
|
-
break disable enable help method putl save thread up
|
28
|
-
catch display eval info p quit set tmate var
|
29
|
-
condition down exit irb pp reload show trace where
|
30
|
-
|
31
|
-
# quit
|
data/test/data/post-mortem.cmd
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# ***************************************************
|
2
|
-
# This tests post-mortem handling.
|
3
|
-
# ***************************************************
|
4
|
-
set debuggertesting on
|
5
|
-
continue
|
6
|
-
# Should have got a divide by 0 error
|
7
|
-
info program
|
8
|
-
where
|
9
|
-
up
|
10
|
-
p x
|
11
|
-
help
|
12
|
-
quit
|
13
|
-
|
data/test/data/post-mortem.right
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
pm.rb:3
|
2
|
-
def zero_div
|
3
|
-
# # ***************************************************
|
4
|
-
# # This tests post-mortem handling.
|
5
|
-
# # ***************************************************
|
6
|
-
# set debuggertesting on
|
7
|
-
Currently testing the debugger is on.
|
8
|
-
# continue
|
9
|
-
pm.rb:5
|
10
|
-
1/0
|
11
|
-
# # Should have got a divide by 0 error
|
12
|
-
# info program
|
13
|
-
The program crashed.
|
14
|
-
Exception: #<ZeroDivisionError: divided by 0>
|
15
|
-
# where
|
16
|
-
--> #0 / at line pm.rb:5
|
17
|
-
#1 at line pm.rb:8
|
18
|
-
# up
|
19
|
-
#1 at line pm.rb:8
|
20
|
-
# p x
|
21
|
-
2
|
22
|
-
# help
|
23
|
-
Type 'help <command-name>' for help on a specific command
|
24
|
-
|
25
|
-
Available commands:
|
26
|
-
backtrace delete enable info p reload source var
|
27
|
-
break disable eval irb pp restart thread where
|
28
|
-
catch display exit kill ps save trace
|
29
|
-
condition down frame list putl set undisplay
|
30
|
-
continue edit help method quit show up
|
31
|
-
|
32
|
-
# quit
|
data/test/data/quit.cmd
DELETED
data/test/data/quit.right
DELETED
File without changes
|
data/test/data/raise.cmd
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
# ********************************************************
|
2
|
-
# This tests that the debugger doesn't step into itself
|
3
|
-
# when the application doesn't terminate the right way.
|
4
|
-
# ********************************************************
|
5
|
-
set debuggertesting on
|
6
|
-
catch x
|
7
|
-
catch ZeroDivisionError
|
8
|
-
info catch
|
9
|
-
catch 5
|
10
|
-
step
|
11
|
-
quit
|
data/test/data/raise.right
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
raise.rb:3
|
2
|
-
raise "abc"
|
3
|
-
# # ********************************************************
|
4
|
-
# # This tests that the debugger doesn't step into itself
|
5
|
-
# # when the application doesn't terminate the right way.
|
6
|
-
# # ********************************************************
|
7
|
-
# set debuggertesting on
|
8
|
-
Currently testing the debugger is on.
|
9
|
-
# catch x
|
10
|
-
NameError Exception: undefined local variable or method `x' for main:Object
|
11
|
-
# catch ZeroDivisionError
|
12
|
-
Catch exception ZeroDivisionError.
|
13
|
-
# info catch
|
14
|
-
ZeroDivisionError
|
15
|
-
# catch 5
|
16
|
-
Warning 5 is not known to be a Class
|
17
|
-
Catch exception 5.
|
18
|
-
# step
|
19
|
-
Catchpoint at raise.rb:3: `abc' (RuntimeError)
|
20
|
-
from ../rdbg.rb:32:in `<main>'
|
21
|
-
raise.rb:3
|
22
|
-
raise "abc"
|
23
|
-
# quit
|
data/test/data/save.cmd
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
# This tests the functioning of some set/show debugger commands
|
2
|
-
set debuggertesting on
|
3
|
-
### *******************************
|
4
|
-
### *** save/source commands ***
|
5
|
-
### *******************************
|
6
|
-
########################################
|
7
|
-
### test args and baseneme...
|
8
|
-
########################################
|
9
|
-
set basename off
|
10
|
-
set autoeval off
|
11
|
-
# Should have nothing set
|
12
|
-
info break
|
13
|
-
info catch
|
14
|
-
# Should save nothing
|
15
|
-
save temp
|
16
|
-
eval File.open("temp").readlines
|
17
|
-
# Should read in nothing
|
18
|
-
source temp
|
19
|
-
info break
|
20
|
-
# Now try saving something interesting
|
21
|
-
break 10
|
22
|
-
catch RuntimeError
|
23
|
-
save temp
|
24
|
-
eval File.open("temp").readlines
|
25
|
-
# FIXME: The below is broken
|
26
|
-
## Change parameters above
|
27
|
-
## catch RuntimeError off
|
28
|
-
## info catch
|
29
|
-
##set listsize 55
|
30
|
-
source temp
|
31
|
-
##info break
|
32
|
-
##info catch
|
33
|
-
##show listsize
|
34
|
-
c
|
data/test/data/save.right
DELETED
@@ -1,59 +0,0 @@
|
|
1
|
-
gcd.rb:4
|
2
|
-
def gcd(a, b)
|
3
|
-
# # This tests the functioning of some set/show debugger commands
|
4
|
-
# set debuggertesting on
|
5
|
-
Currently testing the debugger is on.
|
6
|
-
# ### *******************************
|
7
|
-
# ### *** save/source commands ***
|
8
|
-
# ### *******************************
|
9
|
-
# ########################################
|
10
|
-
# ### test args and baseneme...
|
11
|
-
# ########################################
|
12
|
-
# set basename off
|
13
|
-
basename is off.
|
14
|
-
# set autoeval off
|
15
|
-
autoeval is off.
|
16
|
-
# # Should have nothing set
|
17
|
-
# info break
|
18
|
-
No breakpoints.
|
19
|
-
# info catch
|
20
|
-
No exceptions set to be caught.
|
21
|
-
# # Should save nothing
|
22
|
-
# save temp
|
23
|
-
Saved to 'temp'
|
24
|
-
# eval File.open("temp").readlines
|
25
|
-
["set autoeval off\n", "set basename off\n", "set debuggertesting on\n", "set autolist off\n", "set autoirb off\n"]
|
26
|
-
# # Should read in nothing
|
27
|
-
# source temp
|
28
|
-
autoeval is off.
|
29
|
-
basename is off.
|
30
|
-
Currently testing the debugger is on.
|
31
|
-
autolist is off.
|
32
|
-
autoirb is off.
|
33
|
-
# info break
|
34
|
-
No breakpoints.
|
35
|
-
# # Now try saving something interesting
|
36
|
-
# break 10
|
37
|
-
Breakpoint 1 file ./gcd.rb, line 10
|
38
|
-
# catch RuntimeError
|
39
|
-
Catch exception RuntimeError.
|
40
|
-
# save temp
|
41
|
-
Saved to 'temp'
|
42
|
-
# eval File.open("temp").readlines
|
43
|
-
["break ./gcd.rb:10\n", "catch RuntimeError\n", "set autoeval off\n", "set basename on\n", "set debuggertesting on\n", "set autolist off\n", "set autoirb off\n"]
|
44
|
-
# # FIXME: The below is broken
|
45
|
-
# ## Change parameters above
|
46
|
-
# ## catch RuntimeError off
|
47
|
-
# ## info catch
|
48
|
-
# ##set listsize 55
|
49
|
-
# source temp
|
50
|
-
Breakpoint 2 file gcd.rb, line 10
|
51
|
-
Catch exception RuntimeError.
|
52
|
-
autoeval is off.
|
53
|
-
basename is on.
|
54
|
-
Currently testing the debugger is on.
|
55
|
-
autolist is off.
|
56
|
-
autoirb is off.
|
57
|
-
# ##info break
|
58
|
-
# ##info catch
|
59
|
-
# ##show listsize
|