From fdf2bc93f69a09af22eb32d063aea15e4b1146e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 20 Jun 2013 15:24:36 +0200 Subject: Add asn1 to the list of applications to be started for SSL Required since R16B01. And apparently needed in some cases before. --- test/http_SUITE.erl | 3 +++ test/spdy_SUITE.erl | 2 ++ 2 files changed, 5 insertions(+) (limited to 'test') diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl index 2d7f420..bdff0d0 100644 --- a/test/http_SUITE.erl +++ b/test/http_SUITE.erl @@ -216,6 +216,7 @@ init_per_group(https, Config) -> Transport = ranch_ssl, {_, Cert, Key} = ct_helper:make_certs(), Opts = [{cert, Cert}, {key, Key}], + application:start(asn1), application:start(public_key), application:start(ssl), {ok, _} = cowboy:start_https(https, 100, Opts ++ [{port, 0}], [ @@ -243,6 +244,7 @@ init_per_group(https_compress, Config) -> Transport = ranch_ssl, {_, Cert, Key} = ct_helper:make_certs(), Opts = [{cert, Cert}, {key, Key}], + application:start(asn1), application:start(public_key), application:start(ssl), {ok, _} = cowboy:start_https(https_compress, 100, Opts ++ [{port, 0}], [ @@ -307,6 +309,7 @@ end_per_group(Name, _) when Name =:= https; Name =:= https_compress -> cowboy:stop_listener(Name), application:stop(ssl), application:stop(public_key), + application:stop(asn1), ok; end_per_group(Name, _) -> cowboy:stop_listener(Name), diff --git a/test/spdy_SUITE.erl b/test/spdy_SUITE.erl index 1089991..469e5d6 100644 --- a/test/spdy_SUITE.erl +++ b/test/spdy_SUITE.erl @@ -42,6 +42,7 @@ init_per_suite(Config) -> application:start(crypto), application:start(ranch), application:start(cowboy), + application:start(asn1), application:start(public_key), application:start(ssl), Dir = ?config(priv_dir, Config) ++ "/static", @@ -53,6 +54,7 @@ end_per_suite(Config) -> ct_helper:delete_static_dir(Dir), application:stop(ssl), application:stop(public_key), + application:stop(asn1), application:stop(cowboy), application:stop(ranch), application:stop(crypto), -- cgit v1.2.3