Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

port_range lvar is not defined #1126

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/debug/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def initialize host: nil, port: nil
@port_range = if @port.zero?
0
else
port_range_str = (port_range || CONFIG[:port_range] || "0").to_s
port_range_str = (CONFIG[:port_range] || "0").to_s
raise "Specify a positive integer <=16 for port range" unless port_range_str.match?(/\A\d+\z/) && port_range_str.to_i <= 16
port_range_str.to_i
end
Expand Down
3 changes: 3 additions & 0 deletions test/support/test_case.rb
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ def setup_remote_debuggee(cmd)
msg1 = true
when /\ADEBUGGER: wait for debugger connection/
msg2 = true
else
# unknown lines
STDERR.puts "> #{line}"
end

break if msg1 && msg2
Expand Down
Loading