rbx-trepanning 0.1.0-universal-rubinius-1.2 → 0.2.1-universal-rubinius-1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +3 -0
- data/.travis.yml +4 -0
- data/ChangeLog +162 -0
- data/Gemfile +16 -0
- data/NEWS +15 -8
- data/README.md +72 -0
- data/Rakefile +16 -13
- data/app/client.rb +15 -4
- data/app/cmd_parse.kpeg +38 -40
- data/app/cmd_parse.rb +25 -20
- data/app/cmd_parser.rb +1030 -1036
- data/app/complete.rb +12 -12
- data/app/default.rb +6 -5
- data/app/display.rb +2 -2
- data/app/frame.rb +17 -4
- data/app/method.rb +11 -10
- data/app/options.rb +21 -22
- data/app/util.rb +17 -10
- data/interface/user.rb +2 -2
- data/io/input.rb +13 -3
- data/lib/trepanning.rb +22 -23
- data/processor.rb +32 -32
- data/processor/command.rb +32 -13
- data/processor/command/backtrace.rb +2 -16
- data/processor/command/base/submgr.rb +22 -14
- data/processor/command/base/subsubcmd.rb +11 -13
- data/processor/command/base/subsubmgr.rb +38 -19
- data/processor/command/disassemble.rb +11 -11
- data/processor/command/help.rb +24 -24
- data/processor/command/shell.rb +17 -17
- data/processor/default.rb +5 -2
- data/processor/frame.rb +37 -0
- data/processor/help.rb +9 -11
- data/processor/load_cmds.rb +53 -40
- data/processor/location.rb +2 -2
- data/processor/mock.rb +8 -9
- data/processor/subcmd.rb +12 -12
- data/rbx-trepanning.gemspec +4 -3
- data/sample/rocky-trepanx-colors.rb +1 -1
- data/test/example/factorial.rb +10 -0
- data/test/functional/fn_helper.rb +8 -7
- data/test/functional/test-break.rb +39 -5
- data/test/functional/test-recursive-bt.rb +105 -0
- data/test/integration/helper.rb +14 -14
- data/test/integration/test-quit.rb +8 -2
- data/test/unit/cmd-helper.rb +2 -2
- data/test/unit/test-base-subcmd.rb +14 -3
- data/test/unit/test-completion.rb +7 -3
- data/test/unit/test-io-tcpserver.rb +10 -5
- data/test/unit/test-proc-validate.rb +4 -4
- metadata +208 -113
- data/README.textile +0 -34
@@ -1,6 +1,7 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
require 'test/unit'
|
3
3
|
require 'rubygems'; require 'require_relative'
|
4
|
+
require 'redcard/rubinius'
|
4
5
|
# require_relative '../../app/core'
|
5
6
|
require_relative '../../processor'
|
6
7
|
require_relative '../../processor/command/exit'
|
@@ -27,9 +28,18 @@ class TestBaseSubCommand < Test::Unit::TestCase
|
|
27
28
|
end
|
28
29
|
end
|
29
30
|
|
31
|
+
def get_const(klass, name)
|
32
|
+
name = name.to_sym if RedCard.check '1.9'
|
33
|
+
if klass.constants.member?(name)
|
34
|
+
klass.const_get(name)
|
35
|
+
else
|
36
|
+
nil
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
30
40
|
def test_base_subcommand
|
31
41
|
assert @exit_subcmd
|
32
|
-
assert_raises RuntimeError do
|
42
|
+
assert_raises RuntimeError do
|
33
43
|
@exit_subcmd.run
|
34
44
|
end
|
35
45
|
assert_equal([], $errors)
|
@@ -40,11 +50,12 @@ class TestBaseSubCommand < Test::Unit::TestCase
|
|
40
50
|
next unless cmd_obj.is_a?(Trepan::SubcommandMgr)
|
41
51
|
cmd_obj.subcmds.subcmds.each do |subcmd_name, subcmd_obj|
|
42
52
|
%w(HELP NAME PREFIX).each do |attr|
|
43
|
-
|
53
|
+
val = get_const(subcmd_obj.class, attr)
|
54
|
+
assert_equal(true, !!val,
|
44
55
|
"Constant #{attr} should be defined in \"#{cmd_obj.name} #{subcmd_obj.class::NAME}\"")
|
45
56
|
end
|
46
57
|
end
|
47
|
-
|
58
|
+
|
48
59
|
end
|
49
60
|
end
|
50
61
|
|
@@ -13,6 +13,10 @@ end
|
|
13
13
|
class TestCompletion < Test::Unit::TestCase
|
14
14
|
def test_completion
|
15
15
|
dbgr = Trepan.new
|
16
|
+
unless dbgr.processor
|
17
|
+
assert("FIXME: Why is dbg.processor is coming out nil?")
|
18
|
+
return
|
19
|
+
end
|
16
20
|
[
|
17
21
|
['sho', 'sho', ['show']], # Simple single completion
|
18
22
|
['se', 'se', ['server', 'set']], # Simple multiple completion
|
@@ -24,7 +28,7 @@ class TestCompletion < Test::Unit::TestCase
|
|
24
28
|
['set auto eval ', '', ['off', 'on']], # Many 3-word completions
|
25
29
|
|
26
30
|
# Many two-word completions
|
27
|
-
['set auto ', '', ['dis', 'eval', 'irb', 'list']],
|
31
|
+
['set auto ', '', ['dis', 'eval', 'irb', 'list']],
|
28
32
|
|
29
33
|
['set auto e', 'e', ['eval']],
|
30
34
|
['disas', 'disas', ['disassemble']], # Another single completion
|
@@ -34,11 +38,11 @@ class TestCompletion < Test::Unit::TestCase
|
|
34
38
|
['where', 'where', ['where']], # Single alias completion
|
35
39
|
['set basename o', 'o', ['off', 'on']],
|
36
40
|
].each do |line, token, expect_completion|
|
37
|
-
assert_equal(expect_completion,
|
41
|
+
assert_equal(expect_completion,
|
38
42
|
dbgr.completion_method(token, line),
|
39
43
|
"Bad completion on #{line.inspect} with #{token.inspect}")
|
40
44
|
end
|
41
|
-
assert(dbgr.completion_method('', '').size > 30,
|
45
|
+
assert(dbgr.completion_method('', '').size > 30,
|
42
46
|
'Initial completion should return more than 30 commands')
|
43
47
|
end
|
44
48
|
end
|
@@ -12,10 +12,15 @@ class TestTCPDbgServer < Test::Unit::TestCase
|
|
12
12
|
|
13
13
|
def test_basic
|
14
14
|
server = Trepan::TCPDbgServer.new
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
15
|
+
begin
|
16
|
+
server.open({ :open => false,
|
17
|
+
:port => 1027,
|
18
|
+
:host => '127.0.0.1'
|
19
|
+
})
|
20
|
+
rescue Errno::EADDRINUSE
|
21
|
+
puts "Address already in use. Skipping test."
|
22
|
+
return
|
23
|
+
end
|
19
24
|
threads = []
|
20
25
|
msgs = %w(one two three)
|
21
26
|
Thread.new do
|
@@ -29,7 +34,7 @@ class TestTCPDbgServer < Test::Unit::TestCase
|
|
29
34
|
end
|
30
35
|
end
|
31
36
|
end
|
32
|
-
threads << Thread.new do
|
37
|
+
threads << Thread.new do
|
33
38
|
t = TCPSocket.new('127.0.0.1', 1027)
|
34
39
|
msgs.each do |msg|
|
35
40
|
begin
|
@@ -15,7 +15,7 @@ class TestValidate < Test::Unit::TestCase
|
|
15
15
|
def setup
|
16
16
|
$errors = []
|
17
17
|
$msgs = []
|
18
|
-
@dbg ||= MockDebugger::MockDebugger.new(:nx => true)
|
18
|
+
@dbg ||= MockDebugger::MockDebugger.new(:nx => true, :start_frame=>1)
|
19
19
|
@cmdproc = Trepan::CmdProcessor.new(@dbg)
|
20
20
|
|
21
21
|
class << @cmdproc
|
@@ -31,14 +31,14 @@ class TestValidate < Test::Unit::TestCase
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def test_get_int
|
34
|
-
[['1', 1], ['1E', nil], ['bad', nil], ['1+1', 2], ['-5', -5]].each do
|
34
|
+
[['1', 1], ['1E', nil], ['bad', nil], ['1+1', 2], ['-5', -5]].each do
|
35
35
|
|arg, expected|
|
36
36
|
assert_equal(expected, @cmdproc.get_int_noerr(arg))
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
40
|
def test_get_on_off
|
41
|
-
onoff =
|
41
|
+
onoff =
|
42
42
|
[['1', true], ['on', true],
|
43
43
|
['0', false], ['off', false]].each do |arg, expected|
|
44
44
|
assert_equal(expected, @cmdproc.get_onoff(arg))
|
@@ -117,7 +117,7 @@ class TestValidate < Test::Unit::TestCase
|
|
117
117
|
|
118
118
|
def test_method?
|
119
119
|
def foo; 5 end
|
120
|
-
|
120
|
+
|
121
121
|
# require_relative '../../lib/rbdbgr'
|
122
122
|
# dbgr = Trepan.new(:set_restart => true)
|
123
123
|
# FIXME: 'foo',
|
metadata
CHANGED
@@ -1,120 +1,132 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbx-trepanning
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
- 0
|
10
|
-
version: 0.1.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.1
|
11
5
|
platform: universal-rubinius-1.2
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- R. Bernstein
|
14
8
|
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
11
|
+
date: 2013-07-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - ! '>='
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: !binary |-
|
19
|
+
MA==
|
22
20
|
name: columnize
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
hash: 3
|
30
|
-
segments:
|
31
|
-
- 0
|
32
|
-
version: "0"
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ! '>='
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: !binary |-
|
26
|
+
MA==
|
33
27
|
type: :runtime
|
34
|
-
version_requirements: *id001
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: diff-lcs
|
37
28
|
prerelease: false
|
38
|
-
|
39
|
-
|
40
|
-
requirements:
|
41
|
-
- -
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ! '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: !binary |-
|
35
|
+
MA==
|
36
|
+
name: diff-lcs
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ! '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: !binary |-
|
42
|
+
MA==
|
47
43
|
type: :development
|
48
|
-
version_requirements: *id002
|
49
|
-
- !ruby/object:Gem::Dependency
|
50
|
-
name: rbx-require-relative
|
51
44
|
prerelease: false
|
52
|
-
|
53
|
-
|
54
|
-
requirements:
|
55
|
-
- -
|
56
|
-
- !ruby/object:Gem::Version
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
requirement: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: !binary |-
|
51
|
+
MA==
|
52
|
+
name: redcard
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: !binary |-
|
58
|
+
MA==
|
63
59
|
type: :runtime
|
64
|
-
version_requirements: *id003
|
65
|
-
- !ruby/object:Gem::Dependency
|
66
|
-
name: rbx-linecache
|
67
60
|
prerelease: false
|
68
|
-
|
69
|
-
|
70
|
-
requirements:
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 0.0.9
|
67
|
+
name: rbx-require-relative
|
68
|
+
version_requirements: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ! '>='
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 0.0.9
|
73
|
+
type: :runtime
|
74
|
+
prerelease: false
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ~>
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '1.3'
|
81
|
+
name: rbx-linecache
|
82
|
+
version_requirements: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
71
84
|
- - ~>
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
|
74
|
-
segments:
|
75
|
-
- 1
|
76
|
-
- 3
|
77
|
-
version: "1.3"
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '1.3'
|
78
87
|
type: :runtime
|
79
|
-
version_requirements: *id004
|
80
|
-
- !ruby/object:Gem::Dependency
|
81
|
-
name: coderay
|
82
88
|
prerelease: false
|
83
|
-
|
84
|
-
|
85
|
-
requirements:
|
86
|
-
- -
|
87
|
-
- !ruby/object:Gem::Version
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ! '>='
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '1.0'
|
95
|
+
name: coderay
|
96
|
+
version_requirements: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ! '>='
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '1.0'
|
93
101
|
type: :runtime
|
94
|
-
|
95
|
-
description:
|
96
|
-
|
102
|
+
prerelease: false
|
103
|
+
description: ! 'A modular, testable, Ruby debugger using some of good ideas from
|
104
|
+
|
97
105
|
ruby-debug, other debuggers, and Ruby Rails.
|
98
|
-
|
106
|
+
|
107
|
+
|
99
108
|
Some of the core debugger concepts have been rethought. As a result,
|
109
|
+
|
100
110
|
some of this may be experimental.
|
101
|
-
|
111
|
+
|
112
|
+
|
102
113
|
This version works only on Rubinus 1.2.1 or higher.
|
103
114
|
|
115
|
+
'
|
104
116
|
email: rockyb@rubyforge.net
|
105
|
-
executables:
|
117
|
+
executables:
|
106
118
|
- trepanx
|
107
119
|
extensions: []
|
108
|
-
|
109
120
|
extra_rdoc_files: []
|
110
|
-
|
111
|
-
files:
|
121
|
+
files:
|
112
122
|
- .gitignore
|
123
|
+
- .travis.yml
|
113
124
|
- ChangeLog
|
125
|
+
- Gemfile
|
114
126
|
- LICENSE
|
115
127
|
- Makefile
|
116
128
|
- NEWS
|
117
|
-
- README.
|
129
|
+
- README.md
|
118
130
|
- Rakefile
|
119
131
|
- THANKS
|
120
132
|
- app/.gitignore
|
@@ -343,6 +355,7 @@ files:
|
|
343
355
|
- test/data/quit2.right
|
344
356
|
- test/example/.gitignore
|
345
357
|
- test/example/debugger-stop.rb
|
358
|
+
- test/example/factorial.rb
|
346
359
|
- test/example/fname with blank.rb
|
347
360
|
- test/example/gcd-server.rb
|
348
361
|
- test/example/gcd.rb
|
@@ -360,6 +373,7 @@ files:
|
|
360
373
|
- test/functional/test-list.rb
|
361
374
|
- test/functional/test-next-bug.rb
|
362
375
|
- test/functional/test-next.rb
|
376
|
+
- test/functional/test-recursive-bt.rb
|
363
377
|
- test/functional/test-step.rb
|
364
378
|
- test/functional/test-step2.rb
|
365
379
|
- test/functional/test-tbreak.rb
|
@@ -418,39 +432,120 @@ files:
|
|
418
432
|
- test/unit/test-proc-main.rb
|
419
433
|
- test/unit/test-proc-validate.rb
|
420
434
|
- test/unit/test-subcmd-help.rb
|
421
|
-
has_rdoc: true
|
422
435
|
homepage: http://wiki.github.com/rocky/rbx-trepanning
|
423
|
-
licenses:
|
436
|
+
licenses:
|
424
437
|
- MIT
|
438
|
+
metadata: {}
|
425
439
|
post_install_message:
|
426
440
|
rdoc_options: []
|
427
|
-
|
428
|
-
require_paths:
|
441
|
+
require_paths:
|
429
442
|
- lib
|
430
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
- - ">="
|
443
|
-
- !ruby/object:Gem::Version
|
444
|
-
hash: 3
|
445
|
-
segments:
|
446
|
-
- 0
|
447
|
-
version: "0"
|
443
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
444
|
+
requirements:
|
445
|
+
- - ! '>='
|
446
|
+
- !ruby/object:Gem::Version
|
447
|
+
version: !binary |-
|
448
|
+
MA==
|
449
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
450
|
+
requirements:
|
451
|
+
- - ! '>='
|
452
|
+
- !ruby/object:Gem::Version
|
453
|
+
version: !binary |-
|
454
|
+
MA==
|
448
455
|
requirements: []
|
449
|
-
|
450
456
|
rubyforge_project:
|
451
|
-
rubygems_version:
|
457
|
+
rubygems_version: 2.0.4
|
452
458
|
signing_key:
|
453
|
-
specification_version:
|
459
|
+
specification_version: 4
|
454
460
|
summary: Trepan Ruby Debugger for Rubinius 1.2.4 and higher
|
455
|
-
test_files:
|
456
|
-
|
461
|
+
test_files:
|
462
|
+
- test/data/.gitignore
|
463
|
+
- test/data/enable.right
|
464
|
+
- test/data/fname-with-blank.cmd
|
465
|
+
- test/data/fname-with-blank.right
|
466
|
+
- test/data/inline-call.cmd
|
467
|
+
- test/data/inline-call.right
|
468
|
+
- test/data/quit-Xdebug.right
|
469
|
+
- test/data/quit.cmd
|
470
|
+
- test/data/quit.right
|
471
|
+
- test/data/quit2.cmd
|
472
|
+
- test/data/quit2.right
|
473
|
+
- test/example/.gitignore
|
474
|
+
- test/example/debugger-stop.rb
|
475
|
+
- test/example/factorial.rb
|
476
|
+
- test/example/fname with blank.rb
|
477
|
+
- test/example/gcd-server.rb
|
478
|
+
- test/example/gcd.rb
|
479
|
+
- test/example/goto2goto.rb
|
480
|
+
- test/example/inline-call.rb
|
481
|
+
- test/example/null.rb
|
482
|
+
- test/example/thread1.rb
|
483
|
+
- test/functional/.gitignore
|
484
|
+
- test/functional/fn_helper.rb
|
485
|
+
- test/functional/test-break-name.rb
|
486
|
+
- test/functional/test-break.rb
|
487
|
+
- test/functional/test-eval.rb
|
488
|
+
- test/functional/test-finish.rb
|
489
|
+
- test/functional/test-fn_helper.rb
|
490
|
+
- test/functional/test-list.rb
|
491
|
+
- test/functional/test-next-bug.rb
|
492
|
+
- test/functional/test-next.rb
|
493
|
+
- test/functional/test-recursive-bt.rb
|
494
|
+
- test/functional/test-step.rb
|
495
|
+
- test/functional/test-step2.rb
|
496
|
+
- test/functional/test-tbreak.rb
|
497
|
+
- test/integration/.gitignore
|
498
|
+
- test/integration/file-diff.rb
|
499
|
+
- test/integration/helper.rb
|
500
|
+
- test/integration/test-fname-with-blank.rb
|
501
|
+
- test/integration/test-inline-call.rb
|
502
|
+
- test/integration/test-quit.rb
|
503
|
+
- test/unit/.gitignore
|
504
|
+
- test/unit/cmd-helper.rb
|
505
|
+
- test/unit/mock-helper.rb
|
506
|
+
- test/unit/test-app-brkpt.rb
|
507
|
+
- test/unit/test-app-brkptmgr.rb
|
508
|
+
- test/unit/test-app-cmd_parse.rb
|
509
|
+
- test/unit/test-app-cmd_parser.rb
|
510
|
+
- test/unit/test-app-complete.rb
|
511
|
+
- test/unit/test-app-condition.rb
|
512
|
+
- test/unit/test-app-display.rb
|
513
|
+
- test/unit/test-app-iseq.rb
|
514
|
+
- test/unit/test-app-method.rb
|
515
|
+
- test/unit/test-app-options.rb
|
516
|
+
- test/unit/test-app-run.rb
|
517
|
+
- test/unit/test-app-util.rb
|
518
|
+
- test/unit/test-app-validate.rb
|
519
|
+
- test/unit/test-base-cmd.rb
|
520
|
+
- test/unit/test-base-subcmd.rb
|
521
|
+
- test/unit/test-base-submgr.rb
|
522
|
+
- test/unit/test-base-subsubcmd.rb
|
523
|
+
- test/unit/test-bin-trepanx.rb
|
524
|
+
- test/unit/test-cmd-alias.rb
|
525
|
+
- test/unit/test-cmd-break.rb
|
526
|
+
- test/unit/test-cmd-edit.rb
|
527
|
+
- test/unit/test-cmd-exit.rb
|
528
|
+
- test/unit/test-cmd-finish.rb
|
529
|
+
- test/unit/test-cmd-help.rb
|
530
|
+
- test/unit/test-cmd-kill.rb
|
531
|
+
- test/unit/test-cmd-parse_list_cmd.rb
|
532
|
+
- test/unit/test-cmd-source.rb
|
533
|
+
- test/unit/test-cmd-step.rb
|
534
|
+
- test/unit/test-command.rb
|
535
|
+
- test/unit/test-completion.rb
|
536
|
+
- test/unit/test-intf-user.rb
|
537
|
+
- test/unit/test-io-input.rb
|
538
|
+
- test/unit/test-io-tcp.rb
|
539
|
+
- test/unit/test-io-tcpclient.rb
|
540
|
+
- test/unit/test-io-tcpfns.rb
|
541
|
+
- test/unit/test-io-tcpserver.rb
|
542
|
+
- test/unit/test-proc-eval.rb
|
543
|
+
- test/unit/test-proc-frame.rb
|
544
|
+
- test/unit/test-proc-help.rb
|
545
|
+
- test/unit/test-proc-hook.rb
|
546
|
+
- test/unit/test-proc-list.rb
|
547
|
+
- test/unit/test-proc-load_cmds.rb
|
548
|
+
- test/unit/test-proc-location.rb
|
549
|
+
- test/unit/test-proc-main.rb
|
550
|
+
- test/unit/test-proc-validate.rb
|
551
|
+
- test/unit/test-subcmd-help.rb
|