diff options
author | Hans Nilsson <[email protected]> | 2016-10-31 11:37:10 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-10-31 11:37:10 +0100 |
commit | 59ecab4221fd2b8938c2a3a65f82159626d6a273 (patch) | |
tree | 84b944d044492224b33a9c7b4967f3e9f6d48f8d /lib/ssh/test/ssh_to_openssh_SUITE.erl | |
parent | 1d6d13cc0ab1178d1603af90660963160817a03d (diff) | |
download | otp-59ecab4221fd2b8938c2a3a65f82159626d6a273.tar.gz otp-59ecab4221fd2b8938c2a3a65f82159626d6a273.tar.bz2 otp-59ecab4221fd2b8938c2a3a65f82159626d6a273.zip |
ssh: make test more precise in ssh_to_openssh_SUITE
Diffstat (limited to 'lib/ssh/test/ssh_to_openssh_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_to_openssh_SUITE.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ssh/test/ssh_to_openssh_SUITE.erl b/lib/ssh/test/ssh_to_openssh_SUITE.erl index 2fff097753..2c7fe7898f 100644 --- a/lib/ssh/test/ssh_to_openssh_SUITE.erl +++ b/lib/ssh/test/ssh_to_openssh_SUITE.erl @@ -447,7 +447,7 @@ erlang_client_openssh_server_renegotiate(_Config) -> Ref = make_ref(), Parent = self(), -%% catch ssh_dbg:messages(fun(X,_) -> ct:log(X) end), + catch ssh_dbg:messages(fun(X,_) -> ct:log(X) end), Shell = spawn_link( fun() -> @@ -477,12 +477,12 @@ erlang_client_openssh_server_renegotiate(_Config) -> {error, Ref, Error} -> ct:fail("Error=~p",[Error]); {ok, Ref, ConnectionRef} -> - IO ! {input, self(), "echo Hej\n"}, - receive_data("Hej"), + IO ! {input, self(), "echo Hej1\n"}, + receive_data("Hej1"), Kex1 = ssh_test_lib:get_kex_init(ConnectionRef), ssh_connection_handler:renegotiate(ConnectionRef), - IO ! {input, self(), "echo Hej\n"}, - receive_data("Hej"), + IO ! {input, self(), "echo Hej2\n"}, + receive_data("Hej2"), Kex2 = ssh_test_lib:get_kex_init(ConnectionRef), IO ! {input, self(), "exit\n"}, receive_logout(), |