aboutsummaryrefslogtreecommitdiffstats
path: root/test/spdy_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-06-20 15:24:36 +0200
committerLoïc Hoguin <[email protected]>2013-06-20 16:01:58 +0200
commitfdf2bc93f69a09af22eb32d063aea15e4b1146e1 (patch)
tree139fe36e57d8eb9855629ca49f7d7c0fa3bd6e0c /test/spdy_SUITE.erl
parent2923de944fa3f88fafec4318bfeb0ee59f47cee2 (diff)
downloadcowboy-fdf2bc93f69a09af22eb32d063aea15e4b1146e1.tar.gz
cowboy-fdf2bc93f69a09af22eb32d063aea15e4b1146e1.tar.bz2
cowboy-fdf2bc93f69a09af22eb32d063aea15e4b1146e1.zip
Add asn1 to the list of applications to be started for SSL
Required since R16B01. And apparently needed in some cases before.
Diffstat (limited to 'test/spdy_SUITE.erl')
-rw-r--r--test/spdy_SUITE.erl2
1 files changed, 2 insertions, 0 deletions
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),