diff options
author | Ingela Anderton Andin <[email protected]> | 2011-06-16 11:25:46 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-06-16 11:25:46 +0200 |
commit | e4dc4ebdb3ff9af89584987832bbdc06fcbf8c3a (patch) | |
tree | 123ba889368cac3b6a9176ce0df1d2ca4ddd70bf /lib/ssl | |
parent | d4761d4c6247e0ae3864228b84bee0fb8a0db01b (diff) | |
parent | 3aa0bcebe8e71db8351cbeb16212d2bda6596327 (diff) | |
download | otp-e4dc4ebdb3ff9af89584987832bbdc06fcbf8c3a.tar.gz otp-e4dc4ebdb3ff9af89584987832bbdc06fcbf8c3a.tar.bz2 otp-e4dc4ebdb3ff9af89584987832bbdc06fcbf8c3a.zip |
Merge branch 'ia/ssl/longer-timeout-in-testcase' into dev
* ia/ssl/longer-timeout-in-testcase:
Time out in test case needs to be longer to make sure clean up is properly executed
Diffstat (limited to 'lib/ssl')
-rw-r--r-- | lib/ssl/test/ssl_session_cache_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_session_cache_SUITE.erl b/lib/ssl/test/ssl_session_cache_SUITE.erl index 070ea6d2d7..5d96b457ed 100644 --- a/lib/ssl/test/ssl_session_cache_SUITE.erl +++ b/lib/ssl/test/ssl_session_cache_SUITE.erl @@ -221,7 +221,7 @@ session_cleanup(Config)when is_list(Config) -> %% Make sure session has expired and been cleaned up test_server:sleep(5000), %% Expire time - test_server:sleep(?SLEEP *4), %% Clean up delay + test_server:sleep((?SLEEP*20), %% Clean up delay (very small in this test case) + some extra time undefined = ssl_session_cache:lookup(Cache, {{Hostname, Port}, Id}), undefined = ssl_session_cache:lookup(Cache, {Port, Id}), |