aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-06-20 15:15:14 +0200
committerLoïc Hoguin <[email protected]>2013-06-20 15:15:14 +0200
commitc74d53af61639b478032d0955c829b103fba294c (patch)
tree61fe946f670152d0b0bbeb5162c26797b38ec0b7 /test
parent033afb1a440e613b6c54f1837b1df4e798040719 (diff)
downloadranch-c74d53af61639b478032d0955c829b103fba294c.tar.gz
ranch-c74d53af61639b478032d0955c829b103fba294c.tar.bz2
ranch-c74d53af61639b478032d0955c829b103fba294c.zip
Add asn1 to the list of applications that need to be started for SSL
Diffstat (limited to 'test')
-rw-r--r--test/acceptor_SUITE.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/acceptor_SUITE.erl b/test/acceptor_SUITE.erl
index 0ab6652..f4789c8 100644
--- a/test/acceptor_SUITE.erl
+++ b/test/acceptor_SUITE.erl
@@ -92,6 +92,7 @@ end_per_suite(_) ->
init_per_group(ssl, Config) ->
application:start(crypto),
+ application:start(asn1),
application:start(public_key),
application:start(ssl),
Config;
@@ -101,6 +102,7 @@ init_per_group(_, Config) ->
end_per_group(ssl, _) ->
application:stop(ssl),
application:stop(public_key),
+ application:stop(asn1),
application:stop(crypto),
ok;
end_per_group(_, _) ->