Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/ssh/test/ssh_sftp_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ init_per_testcase(read_6GB, Config) ->
case {os:type(), erlang:system_info(system_architecture)} of
{{win32, _}, _} ->
{skip, "/dev/zero not available on Windows"};
{_, "aarch64"} ->
%% Raspberry Pi (frodo) — too slow for 6GB SFTP read
{_, "aarch64-unknown-linux-gnu"} ->
{skip, "machine too slow for test"};
_ ->
init_per_testcase(read_6GB_prepare_openssh_server, Config)
Expand Down
4 changes: 2 additions & 2 deletions lib/ssh/test/ssh_to_openssh_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ tunnel_in_erlclient_erlserver_denied(Config) ->

%%--------------------------------------------------------------------
tunnel_in_erlclient_openssh_server(_Config) ->
C = ssh_test_lib:connect(?SSH_DEFAULT_PORT, [?ALIVE]),
C = ssh_test_lib:connect_with_retry(?SSH_DEFAULT_PORT, [?ALIVE]),
{ToSock, ToHost, ToPort} = tunneling_listner(),

ListenHost = {127,0,0,1},
Expand Down Expand Up @@ -556,7 +556,7 @@ tunnel_out_erlclient_erlserver(Config) ->

%%--------------------------------------------------------------------
tunnel_out_erlclient_openssh_server(_Config) ->
C = ssh_test_lib:connect(?SSH_DEFAULT_PORT, [?ALIVE]),
C = ssh_test_lib:connect_with_retry(?SSH_DEFAULT_PORT, [?ALIVE]),
{ToSock, ToHost, ToPort} = tunneling_listner(),

ListenHost = {127,0,0,1},
Expand Down
Loading