diff options
author | Ingela Anderton Andin <[email protected]> | 2011-01-21 09:57:22 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-01-21 09:57:22 +0100 |
commit | c9aae9e6874950c671c08940d4e72abc616c550e (patch) | |
tree | 01e0db63432942a98355b4f34a9e034cc747df75 /lib/ssl/test/ssl_to_openssl_SUITE.erl | |
parent | 4c70b07402581cbcdc1204961344cb28bf383d20 (diff) | |
parent | c6238ffaa4ef8bbe0aff8fde402a3254e746d3cc (diff) | |
download | otp-c9aae9e6874950c671c08940d4e72abc616c550e.tar.gz otp-c9aae9e6874950c671c08940d4e72abc616c550e.tar.bz2 otp-c9aae9e6874950c671c08940d4e72abc616c550e.zip |
Merge branch 'ia/ssl-and-public_key/skip-test-if-no-crypto' into dev
* ia/ssl-and-public_key/skip-test-if-no-crypto:
Skip ssl and public key tests if crypto fails to start
Diffstat (limited to 'lib/ssl/test/ssl_to_openssl_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_to_openssl_SUITE.erl | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/lib/ssl/test/ssl_to_openssl_SUITE.erl b/lib/ssl/test/ssl_to_openssl_SUITE.erl index 46ad0c17b6..86d384ee52 100644 --- a/lib/ssl/test/ssl_to_openssl_SUITE.erl +++ b/lib/ssl/test/ssl_to_openssl_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2010. All Rights Reserved. +%% Copyright Ericsson AB 2008-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -50,16 +50,20 @@ init_per_suite(Config0) -> false -> {skip, "Openssl not found"}; _ -> - crypto:start(), - application:start(public_key), - ssl:start(), - Result = - (catch make_certs:all(?config(data_dir, Config0), - ?config(priv_dir, Config0))), - test_server:format("Make certs ~p~n", [Result]), - Config1 = ssl_test_lib:make_dsa_cert(Config0), - Config = ssl_test_lib:cert_options(Config1), - [{watchdog, Dog} | Config] + case crypto:start() of + ok -> + application:start(public_key), + ssl:start(), + Result = + (catch make_certs:all(?config(data_dir, Config0), + ?config(priv_dir, Config0))), + test_server:format("Make certs ~p~n", [Result]), + Config1 = ssl_test_lib:make_dsa_cert(Config0), + Config = ssl_test_lib:cert_options(Config1), + [{watchdog, Dog} | Config]; + _ -> + {skip, "Crypto did not start"} + end end. %%-------------------------------------------------------------------- |