aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/test/ssl_payload_SUITE.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2016-08-26 14:42:45 +0200
committerIngela Anderton Andin <[email protected]>2016-08-30 17:48:16 +0200
commitfe61b290007066da283be78c7540bb4d81711deb (patch)
treea0c3717fb99faec365e6ca4f866dba914964a616 /lib/ssl/test/ssl_payload_SUITE.erl
parent2a6750d0804d1e30a5463c8aaf5b7342fda967fe (diff)
downloadotp-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_payload_SUITE.erl')
-rw-r--r--lib/ssl/test/ssl_payload_SUITE.erl9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/ssl/test/ssl_payload_SUITE.erl b/lib/ssl/test/ssl_payload_SUITE.erl
index cb0571d0a7..c0b762760d 100644
--- a/lib/ssl/test/ssl_payload_SUITE.erl
+++ b/lib/ssl/test/ssl_payload_SUITE.erl
@@ -104,8 +104,13 @@ init_per_testcase(TestCase, Config) when TestCase == server_echos_passive_huge;
TestCase == client_echos_passive_huge;
TestCase == client_echos_active_once_huge;
TestCase == client_echos_active_huge ->
- ct:timetrap({seconds, 90}),
- Config;
+ case erlang:system_info(system_architecture) of
+ "sparc-sun-solaris2.10" ->
+ {skip,"Will take to long time on an old Sparc"};
+ _ ->
+ ct:timetrap({seconds, 90}),
+ Config
+ end;
init_per_testcase(TestCase, Config) when TestCase == server_echos_passive_big;
TestCase == server_echos_active_once_big;