4d397cd6de
CI / lint (pull_request) Failing after 2s
CI / build-and-test (pull_request) Has been skipped
CI / sanitizers (address) (pull_request) Has been skipped
CI / sanitizers (undefined) (pull_request) Has been skipped
CI / fuzz-build (pull_request) Has been skipped
CI / coverage (pull_request) Has been skipped
CI / valgrind (pull_request) Has been skipped
10 lines
281 B
C
10 lines
281 B
C
#include "test_transport_ssh.h"
|
|
#include "transport_ssh.h"
|
|
#include "transport_tcp.h"
|
|
#include "test_utils.h"
|
|
void test_transport_ssh(){
|
|
EXPECT_NULL(client_connect_ssh("nohost.x:22",22));
|
|
EXPECT_NULL(client_connect_ssh(NULL,22));
|
|
EXPECT_NULL(client_connect_ssh("bad",22));
|
|
}
|