diff options
author | Hans Nilsson <[email protected]> | 2017-10-31 10:31:28 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-10-31 10:31:28 +0100 |
commit | d835bd16a1c87a2513df1892e892f94857ed1c86 (patch) | |
tree | ced28a64b61783542248d63f21a0e9a8f87a2d15 /lib/ssh/test/ssh_protocol_SUITE.erl | |
parent | b59ae230ed37078125cec0bfeece5c736784931c (diff) | |
parent | 4eb26d0aec76f5f9588b330448511172146ac078 (diff) | |
download | otp-d835bd16a1c87a2513df1892e892f94857ed1c86.tar.gz otp-d835bd16a1c87a2513df1892e892f94857ed1c86.tar.bz2 otp-d835bd16a1c87a2513df1892e892f94857ed1c86.zip |
Merge branch 'hans/ssh/check_host_user_keys/OTP-14676' into maint
Diffstat (limited to 'lib/ssh/test/ssh_protocol_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_protocol_SUITE.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_protocol_SUITE.erl b/lib/ssh/test/ssh_protocol_SUITE.erl index 74f802cf57..3e3e151781 100644 --- a/lib/ssh/test/ssh_protocol_SUITE.erl +++ b/lib/ssh/test/ssh_protocol_SUITE.erl @@ -630,11 +630,12 @@ client_handles_keyboard_interactive_0_pwds(Config) -> %%%-------------------------------------------------------------------- -client_info_line(_Config) -> +client_info_line(Config) -> %% A client must not send an info-line. If it does, the server should handle %% handle this gracefully {ok,Pid} = ssh_eqc_event_handler:add_report_handler(), - {_, _, Port} = ssh_test_lib:daemon([]), + DataDir = proplists:get_value(data_dir, Config), + {_, _, Port} = ssh_test_lib:daemon([{system_dir,DataDir}]), %% Fake client: {ok,S} = gen_tcp:connect("localhost",Port,[]), |