1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-31 00:03:07 +03:00

tests: Log server messages to separate file

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Norbert Pocs <npocs@redhat.com>
This commit is contained in:
Jakub Jelen
2023-04-27 15:31:52 +02:00
parent 4022ef69f3
commit fcb6ee4031

View File

@ -523,6 +523,7 @@ static int setup_kbdint_server(void **state)
char rsa_hostkey[1024] = {0};
char sshd_path[1024];
char log_file[1024];
int rc;
@ -550,6 +551,11 @@ static int setup_kbdint_server(void **state)
rc = mkdir(sshd_path, 0755);
assert_return_code(rc, errno);
snprintf(log_file,
sizeof(log_file),
"%s/sshd/log",
s->socket_dir);
snprintf(rsa_hostkey,
sizeof(rsa_hostkey),
"%s/sshd/ssh_host_rsa_key",
@ -569,7 +575,9 @@ static int setup_kbdint_server(void **state)
ss->host_key = strdup(rsa_hostkey);
assert_non_null(rsa_hostkey);
/* not to mix up the client and server messages */
ss->verbosity = torture_libssh_verbosity();
ss->log_file = strdup(log_file);
#ifdef WITH_PCAP
ss->with_pcap = 1;