Skip to content
Merged
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
4 changes: 2 additions & 2 deletions lib/ssh/test/ssh_basic_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
]).

-export([
always_ok/1,
always_ok/0,
app_test/1,
appup_test/1,
basic_test/1,
Expand Down Expand Up @@ -1238,7 +1238,7 @@
end || {S,Pid,C} <- Tests].

%%--------------------------------------------------------------------
packet_size(Config) ->

Check warning on line 1241 in lib/ssh/test/ssh_basic_SUITE.erl

View workflow job for this annotation

GitHub Actions / CT Test Results

packet_size failed

artifacts/Unit Test Results/ssh_junit.xml [took 8s]
Raw output
Test packet_size in ssh_basic_SUITE failed!
"unexpected event cnt: 4"
SystemDir = proplists:get_value(data_dir, Config),
PrivDir = proplists:get_value(priv_dir, Config),
UserDir = filename:join(PrivDir, nopubkey), % to make sure we don't use public-key-auth
Expand Down Expand Up @@ -1487,7 +1487,7 @@
ssh_test_lib:receive_exec_end(ConnectionRef, ChannelId),
ssh:stop_daemon(Pid).

always_ok(_) -> ok.
always_ok() -> spawn(fun() -> exit(ok) end).

%%----------------------------------------------------------------------------
setopts_getopts(Config) ->
Expand Down
Loading