diff options
author | Ingela Anderton Andin <[email protected]> | 2011-06-13 14:21:32 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-06-13 14:21:32 +0200 |
commit | 3aa0bcebe8e71db8351cbeb16212d2bda6596327 (patch) | |
tree | 90ad97a56c0ef270959b08687486296d55f3fea7 /lib | |
parent | 751ec4f918bed2f5455538e6296c6b925bcca002 (diff) | |
download | otp-3aa0bcebe8e71db8351cbeb16212d2bda6596327.tar.gz otp-3aa0bcebe8e71db8351cbeb16212d2bda6596327.tar.bz2 otp-3aa0bcebe8e71db8351cbeb16212d2bda6596327.zip |
Time out in test case needs to be longer to make sure clean up is
properly executed
Diffstat (limited to 'lib')
-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 62d404092f..3ec887f165 100644 --- a/lib/ssl/test/ssl_session_cache_SUITE.erl +++ b/lib/ssl/test/ssl_session_cache_SUITE.erl @@ -216,7 +216,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(ssl_otp_session_cache, {{Hostname, Port}, Id}), undefined = ssl_session_cache:lookup(ssl_otp_session_cache, {Port, Id}), |