1
1

torture: check for presence of ssh agent

Этот коммит содержится в:
Aris Adamantiadis 2011-09-23 22:33:21 +02:00
родитель 046aa02f39
Коммит 717840fc09

Просмотреть файл

@ -25,6 +25,7 @@
#include "libssh/libssh.h"
#include "libssh/priv.h"
#include "libssh/session.h"
#include "agent.c"
static void setup(void **state) {
int verbosity = torture_libssh_verbosity();
@ -288,7 +289,10 @@ static void torture_auth_agent(void **state) {
" to enable this test!!\n");
return;
}
if (!agent_is_running(session)){
print_message("*** Agent not running. Test ignored");
return;
}
rc = ssh_options_set(session, SSH_OPTIONS_USER, user);
assert_true(rc == SSH_OK);
@ -316,7 +320,10 @@ static void torture_auth_agent_nonblocking(void **state) {
" to enable this test!!\n");
return;
}
if (!agent_is_running(session)){
print_message("*** Agent not running. Test ignored");
return;
}
rc = ssh_options_set(session, SSH_OPTIONS_USER, user);
assert_true(rc == SSH_OK);