diff options
| author | Hans Nilsson <[email protected]> | 2019-04-17 13:11:04 +0200 | 
|---|---|---|
| committer | Hans Nilsson <[email protected]> | 2019-04-17 16:36:57 +0200 | 
| commit | ce9da69e350e8227927e4e5203932fa031006a5d (patch) | |
| tree | 096bd9545011bc45dd4a654697297dd4b2732139 | |
| parent | 84da98ccf365cfa42dadc0c5e1d54e40b4f4fd7c (diff) | |
| download | otp-ce9da69e350e8227927e4e5203932fa031006a5d.tar.gz otp-ce9da69e350e8227927e4e5203932fa031006a5d.tar.bz2 otp-ce9da69e350e8227927e4e5203932fa031006a5d.zip  | |
ssh: Fix deprecation warnings in tests
| -rw-r--r-- | lib/ssh/test/ssh_compat_SUITE.erl | 15 | ||||
| -rw-r--r-- | lib/ssh/test/ssh_test_lib.erl | 2 | 
2 files changed, 6 insertions, 11 deletions
diff --git a/lib/ssh/test/ssh_compat_SUITE.erl b/lib/ssh/test/ssh_compat_SUITE.erl index d543a0940e..06ed9082cf 100644 --- a/lib/ssh/test/ssh_compat_SUITE.erl +++ b/lib/ssh/test/ssh_compat_SUITE.erl @@ -150,8 +150,7 @@ init_per_group(G, Config0) ->                              stop_docker(ID),                              {fail, "Can't contact docker sshd"}                      catch -                        Class:Exc -> -                            ST = erlang:get_stacktrace(), +                        Class:Exc:ST ->                              ct:log("common_algs: ~p:~p~n~p",[Class,Exc,ST]),                              stop_docker(ID),                              {fail, "Failed during setup"} @@ -160,8 +159,7 @@ init_per_group(G, Config0) ->                  cant_start_docker ->                      {skip, "Can't start docker"}; -                C:E -> -                    ST = erlang:get_stacktrace(), +                C:E:ST ->                      ct:log("No ~p~n~p:~p~n~p",[G,C,E,ST]),                      {skip, "Can't start docker"}              end; @@ -1026,8 +1024,7 @@ receive_hello(S) ->          Result ->              Result      catch -        Class:Error -> -            ST = erlang:get_stacktrace(), +        Class:Error:ST ->              {error, {Class,Error,ST}}      end. @@ -1104,8 +1101,7 @@ sftp_tests_erl_server(Config, ServerIP, ServerPort, ServerRootDir, UserDir) ->          call_sftp_in_docker(Config, ServerIP, ServerPort, Cmnds, UserDir),          check_local_directory(ServerRootDir)      catch -        Class:Error -> -            ST = erlang:get_stacktrace(), +        Class:Error:ST ->              {error, {Class,Error,ST}}      end. @@ -1347,8 +1343,7 @@ one_test_erl_client(SFTP, Id, C) when SFTP==sftp ; SFTP==sftp_async ->          catch ssh_sftp:stop_channel(Ch),          R      catch -        Class:Error -> -            ST = erlang:get_stacktrace(), +        Class:Error:ST ->              {error, {SFTP,Id,Class,Error,ST}}      end. diff --git a/lib/ssh/test/ssh_test_lib.erl b/lib/ssh/test/ssh_test_lib.erl index 1148071851..1129303414 100644 --- a/lib/ssh/test/ssh_test_lib.erl +++ b/lib/ssh/test/ssh_test_lib.erl @@ -970,7 +970,7 @@ expected_state(_) -> false.  %%%----------------------------------------------------------------  %%% Return a string with N random characters  %%% -random_chars(N) -> [crypto:rand_uniform($a,$z) || _<-lists:duplicate(N,x)]. +random_chars(N) -> [($a-1)+rand:uniform($z-$a) || _<-lists:duplicate(N,x)].  create_random_dir(Config) ->  | 
