Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:Ledest:erlang:23
erlang
1496-ssh-ssh_sftp_SUITE-retrieve_attributes-Win...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 1496-ssh-ssh_sftp_SUITE-retrieve_attributes-Windows-fix.patch of Package erlang
From a76a7fcdce86d51c117a0fd6779b38f10dfa4641 Mon Sep 17 00:00:00 2001 From: Jakub Witczak <kuba@erlang.org> Date: Thu, 14 Mar 2024 16:51:23 +0100 Subject: [PATCH] ssh: ssh_sftp_SUITE:retrieve_attributes Windows fix --- lib/ssh/test/ssh_sftp_SUITE.erl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/ssh/test/ssh_sftp_SUITE.erl b/lib/ssh/test/ssh_sftp_SUITE.erl index 528708ba9d..079e8a5d1c 100644 --- a/lib/ssh/test/ssh_sftp_SUITE.erl +++ b/lib/ssh/test/ssh_sftp_SUITE.erl @@ -565,11 +565,11 @@ retrieve_attributes(Config) when is_list(Config) -> FileName = proplists:get_value(filename, Config), SftpFileName = w2l(Config, FileName), {Sftp, _} = proplists:get_value(sftp, Config), - {ok, FileInfo} = ssh_sftp:read_file_info(Sftp, SftpFileName), - {ok, NewFileInfo} = file:read_file_info(FileName), - ct:log("ssh_sftp:read_file_info(~p): ~p~n" - "file:read_file_info(~p): ~p", - [SftpFileName, FileInfo, FileName, NewFileInfo]), + {ok, SftpFileInfo} = ssh_sftp:read_file_info(Sftp, SftpFileName), + {ok, FileFileInfo} = file:read_file_info(FileName), + ct:log("ssh_sftp:read_file_info(): ~p~n" + "file:read_file_info(): ~p", + [SftpFileInfo, FileFileInfo]), {ExpectedUid, ExpectedGid} = case {os:type(), proplists:get_value(group,Config)} of {{win32, _}, openssh_server} -> @@ -580,10 +580,10 @@ retrieve_attributes(Config) when is_list(Config) -> %% and runs on WSL) {1000, 1000}; _ -> - {FileInfo#file_info.uid, FileInfo#file_info.gid} + {FileFileInfo#file_info.uid, FileFileInfo#file_info.gid} end, - ?assertEqual(ExpectedUid, NewFileInfo#file_info.uid), - ?assertEqual(ExpectedGid, NewFileInfo#file_info.gid), + ?assertEqual(ExpectedUid, SftpFileInfo#file_info.uid), + ?assertEqual(ExpectedGid, SftpFileInfo#file_info.gid), ok. %%-------------------------------------------------------------------- -- 2.35.3
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor