diff options
author | Hans Nilsson <[email protected]> | 2016-02-17 13:40:42 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-02-22 11:58:12 +0100 |
commit | 0f54fc85b91b5ad244534238aeab5c0bc5f93815 (patch) | |
tree | b51d804bc41f061225b401f7d648b4bd8125aed3 /lib/ssh/test/ssh_algorithms_SUITE.erl | |
parent | 8626ba1bf825899ffad119aca5ae126176b0b6d3 (diff) | |
download | otp-0f54fc85b91b5ad244534238aeab5c0bc5f93815.tar.gz otp-0f54fc85b91b5ad244534238aeab5c0bc5f93815.tar.bz2 otp-0f54fc85b91b5ad244534238aeab5c0bc5f93815.zip |
ssh: remove calls to crypto:start|stop
Conflicts:
lib/ssh/test/ssh_upgrade_SUITE.erl
Diffstat (limited to 'lib/ssh/test/ssh_algorithms_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_algorithms_SUITE.erl | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/lib/ssh/test/ssh_algorithms_SUITE.erl b/lib/ssh/test/ssh_algorithms_SUITE.erl index beff561631..8ccde6c29c 100644 --- a/lib/ssh/test/ssh_algorithms_SUITE.erl +++ b/lib/ssh/test/ssh_algorithms_SUITE.erl @@ -91,18 +91,12 @@ init_per_suite(Config) -> ?MAX_NUM_ALGORITHMS ]), ct:log("all() ->~n ~p.~n~ngroups()->~n ~p.~n",[all(),groups()]), - catch crypto:stop(), - case catch crypto:start() of - ok -> - ssh:start(), - [{std_simple_sftp_size,25000} % Sftp transferred data size - | setup_pubkey(Config)]; - _Else -> - {skip, "Crypto could not be started!"} - end. + ssh:start(), + [{std_simple_sftp_size,25000} % Sftp transferred data size + | setup_pubkey(Config)]. + end_per_suite(_Config) -> - ssh:stop(), - crypto:stop(). + ssh:stop(). init_per_group(Group, Config) -> |