diff options
author | Ingela Anderton Andin <[email protected]> | 2016-10-13 10:21:16 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-10-21 16:08:42 +0200 |
commit | 35ccc685984fc435a49e4a8b0228136b47a5095a (patch) | |
tree | b8b9c2deb14927ed55e2bcc3b96a6aa0a0fc3c98 /lib | |
parent | 063e8e71ec3f27886ddee0660a2a71dad45c7822 (diff) | |
download | otp-35ccc685984fc435a49e4a8b0228136b47a5095a.tar.gz otp-35ccc685984fc435a49e4a8b0228136b47a5095a.tar.bz2 otp-35ccc685984fc435a49e4a8b0228136b47a5095a.zip |
ssl: Change to more modest timeouts
This should be fine as timeout problem was due to test case
bug that treated a stream as if it was packet oriented.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/test/ssl_packet_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssl/test/ssl_packet_SUITE.erl b/lib/ssl/test/ssl_packet_SUITE.erl index 942e68967a..3446a566c4 100644 --- a/lib/ssl/test/ssl_packet_SUITE.erl +++ b/lib/ssl/test/ssl_packet_SUITE.erl @@ -41,9 +41,9 @@ -define(MANY, 1000). -define(SOME, 50). --define(BASE_TIMEOUT_SECONDS, 30). --define(SOME_SCALE, 20). --define(MANY_SCALE, 20). +-define(BASE_TIMEOUT_SECONDS, 5). +-define(SOME_SCALE, 2). +-define(MANY_SCALE, 3). %%-------------------------------------------------------------------- %% Common Test interface functions ----------------------------------- |