diff options
Diffstat (limited to 'lib/ssh/test/ssh_basic_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_basic_SUITE.erl | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/ssh/test/ssh_basic_SUITE.erl b/lib/ssh/test/ssh_basic_SUITE.erl index 6062e2d789..cb0d5483ab 100644 --- a/lib/ssh/test/ssh_basic_SUITE.erl +++ b/lib/ssh/test/ssh_basic_SUITE.erl @@ -39,11 +39,15 @@ %% variable, but should NOT alter/remove any existing entries. %%-------------------------------------------------------------------- init_per_suite(Config) -> - crypto:start(), - Dir = ?config(priv_dir, Config), - ssh_test_lib:save_known_hosts(Dir), - {ok, _} = ssh_test_lib:get_id_keys(Dir), - Config. + case catch crypto:start() of + ok -> + Dir = ?config(priv_dir, Config), + ssh_test_lib:save_known_hosts(Dir), + {ok, _} = ssh_test_lib:get_id_keys(Dir), + Config; + _Else -> + {skip, "Crypto could not be started!"} + end. %%-------------------------------------------------------------------- %% Function: end_per_suite(Config) -> _ |