aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2019-07-31 15:44:16 +0200
committerIngela Anderton Andin <[email protected]>2019-08-22 14:56:54 +0200
commit2e6c410712847ba3e20819e2c434e675c26e6160 (patch)
tree9672a4db523292ff2b222724aa25b332bf733493
parentd5ad1771c0bc45fa99fe3b914dd852702c13e55e (diff)
downloadotp-2e6c410712847ba3e20819e2c434e675c26e6160.tar.gz
otp-2e6c410712847ba3e20819e2c434e675c26e6160.tar.bz2
otp-2e6c410712847ba3e20819e2c434e675c26e6160.zip
ssl: Make sure test starts in a "good" state
-rw-r--r--lib/ssl/test/ssl_api_SUITE.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_api_SUITE.erl b/lib/ssl/test/ssl_api_SUITE.erl
index 280ea63e51..14e5024b91 100644
--- a/lib/ssl/test/ssl_api_SUITE.erl
+++ b/lib/ssl/test/ssl_api_SUITE.erl
@@ -1251,8 +1251,9 @@ der_input(Config) when is_list(Config) ->
[_, _,_, _, Prop] = StatusInfo,
State = ssl_test_lib:state(Prop),
[CADb | _] = element(6, State),
-
+ ct:sleep(?SLEEP*2), %%Make sure there is no outstanding clean cert db msg in manager
Size = ets:info(CADb, size),
+ ct:pal("Size ~p", [Size]),
SeverVerifyOpts = ssl_test_lib:ssl_options(server_rsa_opts, Config),
{ServerCert, ServerKey, ServerCaCerts, DHParams} = der_input_opts([{dhfile, DHParamFile} |
@@ -1281,6 +1282,7 @@ der_input(Config) when is_list(Config) ->
ssl_test_lib:check_result(Server, ok, Client, ok),
ssl_test_lib:close(Server),
ssl_test_lib:close(Client),
+ %% Using only DER input should not increase file indexed DB
Size = ets:info(CADb, size).
%%--------------------------------------------------------------------