Skip to content

Commit f22dbc5

Browse files
committed
Merge branch 'maint'
2 parents 50f35bf + 63585ee commit f22dbc5

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

lib/ssh/test/ssh_sftp_SUITE.erl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,8 @@ init_per_testcase(read_6GB, Config) ->
285285
case {os:type(), erlang:system_info(system_architecture)} of
286286
{{win32, _}, _} ->
287287
{skip, "/dev/zero not available on Windows"};
288-
{_, "aarch64"} ->
288+
%% Raspberry Pi (frodo) — too slow for 6GB SFTP read
289+
{_, "aarch64-unknown-linux-gnu"} ->
289290
{skip, "machine too slow for test"};
290291
_ ->
291292
init_per_testcase(read_6GB_prepare_openssh_server, Config)

lib/ssh/test/ssh_to_openssh_SUITE.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ tunnel_in_erlclient_erlserver_denied(Config) ->
524524

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

530530
ListenHost = {127,0,0,1},
@@ -556,7 +556,7 @@ tunnel_out_erlclient_erlserver(Config) ->
556556

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

562562
ListenHost = {127,0,0,1},

0 commit comments

Comments
 (0)