1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-24 19:37:48 +03:00

torture: check for presence of ssh agent

This commit is contained in:
Aris Adamantiadis
2011-09-23 22:33:21 +02:00
parent 046aa02f39
commit 717840fc09

View File

@@ -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);