diff options
author | Hans Nilsson <[email protected]> | 2015-11-17 11:38:35 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-11-17 11:38:35 +0100 |
commit | 836f531b5d48fdf315e671b6325ac49ab5e28939 (patch) | |
tree | c16720f49db34eb16b5aaa42f9a96837c6ab3fc7 /lib/ssh/test/ssh_algorithms_SUITE.erl | |
parent | 98550cc4ac8857a4cf6565e18fc76a14780fe60c (diff) | |
parent | fd14ada7bcb1de5b72b07b6ff63d091a9596bc7b (diff) | |
download | otp-836f531b5d48fdf315e671b6325ac49ab5e28939.tar.gz otp-836f531b5d48fdf315e671b6325ac49ab5e28939.tar.bz2 otp-836f531b5d48fdf315e671b6325ac49ab5e28939.zip |
Merge branch 'maint'
* maint:
ssh: Add env var info printout to ssh_algorithms_SUTE:init_per_suite
ssh: more public keys added to test suite
Diffstat (limited to 'lib/ssh/test/ssh_algorithms_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_algorithms_SUITE.erl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_algorithms_SUITE.erl b/lib/ssh/test/ssh_algorithms_SUITE.erl index 85415a17de..f0ac92fef6 100644 --- a/lib/ssh/test/ssh_algorithms_SUITE.erl +++ b/lib/ssh/test/ssh_algorithms_SUITE.erl @@ -69,6 +69,9 @@ two_way_tags() -> [cipher,mac,compression]. %%-------------------------------------------------------------------- init_per_suite(Config) -> + ct:log("os:getenv(\"HOME\") = ~p~n" + "init:get_argument(home) = ~p", + [os:getenv("HOME"), init:get_argument(home)]), ct:log("~n~n" "OS ssh:~n=======~n~p~n~n~n" "Erl ssh:~n========~n~p~n~n~n" @@ -358,7 +361,9 @@ start_pubkey_daemon(Opts, Config) -> setup_pubkey(Config) -> DataDir = ?config(data_dir, Config), UserDir = ?config(priv_dir, Config), - ssh_test_lib:setup_dsa_known_host(DataDir, UserDir), + ssh_test_lib:setup_dsa(DataDir, UserDir), + ssh_test_lib:setup_rsa(DataDir, UserDir), + ssh_test_lib:setup_ecdsa("256", DataDir, UserDir), Config. |