fix: restore follow_symlinks and partial fields lost in merge, register ssh tests
CI / lint (pull_request) Successful in 11s
CI / sanitizers (address) (pull_request) Successful in 16s
CI / sanitizers (undefined) (pull_request) Successful in 16s
CI / coverage (pull_request) Successful in 10s
CI / fuzz-build (pull_request) Successful in 13s
CI / valgrind (pull_request) Successful in 12s
CI / build-and-test (pull_request) Successful in 55s

This commit is contained in:
2026-07-29 18:19:50 +02:00
parent e68e33c0c5
commit 52d5492dee
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -51,6 +51,8 @@ typedef struct Config {
int max_depth;
FILE* log_file;
int queue_size;
bool follow_symlinks;
bool partial;
} Config;
#define PROTOCOL_VERSION "1.3.0"
+2
View File
@@ -42,4 +42,6 @@ static void test_ssh_connect_unreachable() {
void test_transport_ssh() {
test_ssh_connect_invalid_dest_no_colon();
test_ssh_connect_invalid_dest_empty();
test_ssh_connect_malformed();
test_ssh_connect_unreachable();
}