Files
FastSync/tests/test_transport_ssh.c
T
TapTap 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
fix: add unit test coverage for sendfile, log, multiprocessing, transport, scanner edge cases (#71, #63, #62, #56, #55)
2026-07-20 18:40:34 +02:00

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