diff options
author | Hans Nilsson <[email protected]> | 2017-02-27 12:23:32 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-02-27 12:23:32 +0100 |
commit | cba9c49ee26a848a8dac7971b4c8edf39f9f0bf0 (patch) | |
tree | 7e0b20b6a2b7fcd3d4503d855a4e2d4f3be170f4 /lib/ssh | |
parent | 82b661fb3aa20c6051dc968baf7815b1b2958d6f (diff) | |
download | otp-cba9c49ee26a848a8dac7971b4c8edf39f9f0bf0.tar.gz otp-cba9c49ee26a848a8dac7971b4c8edf39f9f0bf0.tar.bz2 otp-cba9c49ee26a848a8dac7971b4c8edf39f9f0bf0.zip |
ssh: Print Pids in testcase for debugging
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/test/ssh_to_openssh_SUITE.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ssh/test/ssh_to_openssh_SUITE.erl b/lib/ssh/test/ssh_to_openssh_SUITE.erl index b6f4a7371d..0b9b7acde8 100644 --- a/lib/ssh/test/ssh_to_openssh_SUITE.erl +++ b/lib/ssh/test/ssh_to_openssh_SUITE.erl @@ -464,6 +464,7 @@ erlang_client_openssh_server_renegotiate(_Config) -> {silently_accept_hosts,true}], group_leader(IO, self()), {ok, ConnRef} = ssh:connect(Host, ?SSH_DEFAULT_PORT, Options), + ct:pal("Parent = ~p, IO = ~p, Shell = ~p, ConnRef = ~p~n",[Parent, IO, self(), ConnRef]), case ssh_connection:session_channel(ConnRef, infinity) of {ok,ChannelId} -> success = ssh_connection:ptty_alloc(ConnRef, ChannelId, []), |