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