diff options
author | Ingela Anderton Andin <[email protected]> | 2011-03-07 10:02:06 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-03-07 10:02:06 +0100 |
commit | 7d45e56bbe2d084756fceb4e9b8065f74d1a503b (patch) | |
tree | c58e46731cd93ac29d2fb94d0bd7f3d0778ac7eb /lib/ssl/test/old_ssl_dist_SUITE.erl | |
parent | 84884b96de521491d34a19b1b3497d3d76549126 (diff) | |
download | otp-7d45e56bbe2d084756fceb4e9b8065f74d1a503b.tar.gz otp-7d45e56bbe2d084756fceb4e9b8065f74d1a503b.tar.bz2 otp-7d45e56bbe2d084756fceb4e9b8065f74d1a503b.zip |
Workaround for application:start(crypto) inconsistency
Diffstat (limited to 'lib/ssl/test/old_ssl_dist_SUITE.erl')
-rw-r--r-- | lib/ssl/test/old_ssl_dist_SUITE.erl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/ssl/test/old_ssl_dist_SUITE.erl b/lib/ssl/test/old_ssl_dist_SUITE.erl index 6a072c9d98..4544fb616a 100644 --- a/lib/ssl/test/old_ssl_dist_SUITE.erl +++ b/lib/ssl/test/old_ssl_dist_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2010. All Rights Reserved. +%% Copyright Ericsson AB 2007-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 @@ -62,9 +62,15 @@ end_per_group(_GroupName, Config) -> init_per_suite(Config) -> - add_ssl_opts_config(Config). + try crypto:start() of + ok -> + add_ssl_opts_config(Config) + catch _:_ -> + {skip, "Crypto did not start"} + end. end_per_suite(Config) -> + application:stop(crypto), Config. init_per_testcase(Case, Config) when list(Config) -> |