diff options
author | Hans Nilsson <[email protected]> | 2015-11-12 10:09:44 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-11-13 12:24:45 +0100 |
commit | 9cce80c63af4e1bfbbddb2c2f32a17760d5e6b7d (patch) | |
tree | 177c1a7755d5df5bbf720a42f8edaea80e8c020d /lib/ssh | |
parent | b638b3e8c3be7599724fc086e0dfd652b89b72c2 (diff) | |
download | otp-9cce80c63af4e1bfbbddb2c2f32a17760d5e6b7d.tar.gz otp-9cce80c63af4e1bfbbddb2c2f32a17760d5e6b7d.tar.bz2 otp-9cce80c63af4e1bfbbddb2c2f32a17760d5e6b7d.zip |
ssh: Add env var info printout to ssh_algorithms_SUTE:init_per_suite
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/test/ssh_algorithms_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ssh/test/ssh_algorithms_SUITE.erl b/lib/ssh/test/ssh_algorithms_SUITE.erl index fbfca324b2..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" |