Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
  • Loading branch information
u3s committed Nov 27, 2024
2 parents ca64441 + 045ec6b commit c2dc2cc
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions lib/ssh/test/ssh_options_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@

suite() ->
[{ct_hooks,[ts_install_cth]},
{timetrap,{seconds,60}}].
{timetrap,{seconds,15}}].

all() ->
[connectfun_disconnectfun_server,
Expand Down Expand Up @@ -1563,7 +1563,7 @@ try_to_connect(Connect, Host, Port, Pid, Tref, N) ->

%%--------------------------------------------------------------------
max_sessions_drops_tcp_connects() ->
[{timetrap,{minutes,20}}].
[{timetrap,{minutes,2}}].

max_sessions_drops_tcp_connects(Config) ->
MaxSessions = 20,
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh/test/ssh_pubkey_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@

suite() ->
[{ct_hooks,[ts_install_cth]},
{timetrap,{seconds,40}}].
{timetrap,{seconds,20}}].

all() ->
[{group, old_format},
Expand Down
4 changes: 2 additions & 2 deletions lib/ssh/test/ssh_sftp_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@
-include("ssh_test_lib.hrl").
-include_lib("stdlib/include/assert.hrl").
%% Default timetrap timeout
-define(default_timeout, test_server:minutes(1)).
-define(default_timeout, test_server:minutes(0.5)).

%%--------------------------------------------------------------------
%% Common Test interface functions -----------------------------------
%%--------------------------------------------------------------------

suite() ->
[{ct_hooks,[ts_install_cth]},
{timetrap,{seconds,40}}].
{timetrap,{seconds,20}}].

all() ->
[{group, not_unicode},
Expand Down
4 changes: 2 additions & 2 deletions lib/ssh/test/ssh_sftpd_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
-define(PASSWD, "Sesame").
%% -define(XFER_PACKET_SIZE, 32768).
%% -define(XFER_WINDOW_SIZE, 4*?XFER_PACKET_SIZE).
-define(SSH_TIMEOUT, 10000).
-define(SSH_TIMEOUT, 5000).
-define(REG_ATTERS, <<0,0,0,0,1>>).
-define(UNIX_EPOCH, 62167219200).

Expand All @@ -80,7 +80,7 @@
%%--------------------------------------------------------------------

suite() ->
[{timetrap,{seconds,40}}].
[{timetrap,{seconds,20}}].

all() ->
[open_close_file,
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

suite() ->
[{ct_hooks,[ts_install_cth]},
{timetrap,{seconds,40}}].
{timetrap,{seconds,20}}].

all() ->
[close_file,
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh/test/ssh_sup_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
%%--------------------------------------------------------------------
suite() ->
[{ct_hooks,[ts_install_cth]},
{timetrap,{seconds,100}}].
{timetrap,{seconds,50}}].

all() ->
[default_tree, sshc_subtree, sshd_subtree, sshd_subtree_profile,
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh/test/ssh_test_lib.hrl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
%%-------------------------------------------------------------------------
%% Timeout time in ms
%%-------------------------------------------------------------------------
-define(TIMEOUT, 27000).
-define(TIMEOUT, 15000).
-define(v(Key, Config), proplists:get_value(Key, Config)).
-define(v(Key, Config, Default), proplists:get_value(Key, Config, Default)).

Expand Down
2 changes: 1 addition & 1 deletion lib/ssh/test/ssh_to_openssh_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
%%--------------------------------------------------------------------

suite() ->
[{timetrap,{seconds,60}}].
[{timetrap,{seconds,30}}].

all() ->
case os:find_executable("ssh") of
Expand Down

0 comments on commit c2dc2cc

Please sign in to comment.