diff options
author | Ingela Anderton Andin <[email protected]> | 2016-08-26 14:42:45 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-08-30 17:48:16 +0200 |
commit | fe61b290007066da283be78c7540bb4d81711deb (patch) | |
tree | a0c3717fb99faec365e6ca4f866dba914964a616 /lib/ssl/test/ssl_basic_SUITE.erl | |
parent | 2a6750d0804d1e30a5463c8aaf5b7342fda967fe (diff) | |
download | otp-fe61b290007066da283be78c7540bb4d81711deb.tar.gz otp-fe61b290007066da283be78c7540bb4d81711deb.tar.bz2 otp-fe61b290007066da283be78c7540bb4d81711deb.zip |
ssl: Timeout tuning
Skip some test on really slow solaris machines
Diffstat (limited to 'lib/ssl/test/ssl_basic_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_basic_SUITE.erl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_basic_SUITE.erl b/lib/ssl/test/ssl_basic_SUITE.erl index 665dbb1df3..38341f77aa 100644 --- a/lib/ssl/test/ssl_basic_SUITE.erl +++ b/lib/ssl/test/ssl_basic_SUITE.erl @@ -340,7 +340,7 @@ init_per_testcase(TestCase, Config) when TestCase == client_renegotiate; TestCase == renegotiate_dos_mitigate_passive; TestCase == renegotiate_dos_mitigate_absolute -> ssl_test_lib:ct_log_supported_protocol_versions(Config), - ct:timetrap({seconds, 30}), + ct:timetrap({seconds, 90}), Config; init_per_testcase(TestCase, Config) when TestCase == psk_cipher_suites; @@ -350,6 +350,11 @@ init_per_testcase(TestCase, Config) when TestCase == psk_cipher_suites; TestCase == ciphers_dsa_signed_certs; TestCase == ciphers_dsa_signed_certs_openssl_names; TestCase == anonymous_cipher_suites; + TestCase == ciphers_ecdsa_signed_certs; + TestCase == ciphers_ecdsa_signed_certs_openssl_names; + TestCase == anonymous_cipher_suites; + TestCase == psk_anon_cipher_suites; + TestCase == psk_anon_with_hint_cipher_suites; TestCase == versions_option, TestCase == tls_tcp_connect_big -> ssl_test_lib:ct_log_supported_protocol_versions(Config), |