diff options
author | Hans Nilsson <[email protected]> | 2016-05-09 15:21:36 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-05-09 15:21:36 +0200 |
commit | 2d19c1c0102781c570b80a900fe161c99997b95c (patch) | |
tree | c67f789496df0f612c827f0e91005278c27ad9c7 /lib/ssh | |
parent | 8aedb4e5405af6b4c80a71ff579c9bcf5143ef1c (diff) | |
download | otp-2d19c1c0102781c570b80a900fe161c99997b95c.tar.gz otp-2d19c1c0102781c570b80a900fe161c99997b95c.tar.bz2 otp-2d19c1c0102781c570b80a900fe161c99997b95c.zip |
ssh: polish test log (ssh_algorithms_SUITE)
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/test/ssh_algorithms_SUITE.erl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/ssh/test/ssh_algorithms_SUITE.erl b/lib/ssh/test/ssh_algorithms_SUITE.erl index 9910b8f1d7..f7d186646d 100644 --- a/lib/ssh/test/ssh_algorithms_SUITE.erl +++ b/lib/ssh/test/ssh_algorithms_SUITE.erl @@ -70,10 +70,10 @@ 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" + ct:log("~n" + "Environment:~n============~n" + "os:getenv(\"HOME\") = ~p~n" + "init:get_argument(home) = ~p~n~n~n" "OS ssh:~n=======~n~p~n~n~n" "Erl ssh:~n========~n~p~n~n~n" "Installed ssh client:~n=====================~n~p~n~n~n" @@ -82,7 +82,9 @@ init_per_suite(Config) -> " -- Default dh group exchange parameters ({min,def,max}): ~p~n" " -- dh_default_groups: ~p~n" " -- Max num algorithms: ~p~n" - ,[os:cmd("ssh -V"), + ,[os:getenv("HOME"), + init:get_argument(home), + os:cmd("ssh -V"), ssh:default_algorithms(), ssh_test_lib:default_algorithms(sshc), ssh_test_lib:default_algorithms(sshd), |