aboutsummaryrefslogtreecommitdiffstats
path: root/lib/reltool
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2013-02-14 16:28:23 +0100
committerSiri Hansen <[email protected]>2013-03-04 11:01:13 +0100
commita08294628c7a20468c81e90db0be27ff091fd627 (patch)
treea05a67f198a7bdf434b7ef3f352bb183dc8fbecd /lib/reltool
parent79406f338464a9ba94c8531c8a7a44a01ad14b42 (diff)
downloadotp-a08294628c7a20468c81e90db0be27ff091fd627.tar.gz
otp-a08294628c7a20468c81e90db0be27ff091fd627.tar.bz2
otp-a08294628c7a20468c81e90db0be27ff091fd627.zip
[reltool] Increase timetrap timeout for reltool_server_SUTIE to 10 minutes
The timeout of 5 minutes sometimes expired for test case use_selected_vsn on some platforms.
Diffstat (limited to 'lib/reltool')
-rw-r--r--lib/reltool/test/reltool_test_lib.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/reltool/test/reltool_test_lib.erl b/lib/reltool/test/reltool_test_lib.erl
index 61f783190c..3485365ed9 100644
--- a/lib/reltool/test/reltool_test_lib.erl
+++ b/lib/reltool/test/reltool_test_lib.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2009-2012. All Rights Reserved.
+%% Copyright Ericsson AB 2009-2013. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -25,7 +25,7 @@
init_per_suite(Config) when is_list(Config)->
global:register_name(reltool_global_logger, group_leader()),
- incr_timetrap(Config, 5).
+ incr_timetrap(Config, 10).
end_per_suite(Config) when is_list(Config)->
global:unregister_name(reltool_global_logger),
@@ -51,7 +51,7 @@ set_kill_timer(Config) ->
Time =
case lookup_config(tc_timeout, Config) of
[] ->
- timer:minutes(5);
+ timer:minutes(10);
ConfigTime when is_integer(ConfigTime) ->
ConfigTime
end,