From 6d50a8bff1938a8d7f398275a886aca37d6f6a7c Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Tue, 14 May 2024 23:09:36 +0200 Subject: tests improved logging; add dir client test --- ecp/test/client.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'ecp/test/client.c') diff --git a/ecp/test/client.c b/ecp/test/client.c index 0236f97..eb39c92 100644 --- a/ecp/test/client.c +++ b/ecp/test/client.c @@ -47,33 +47,33 @@ int main(int argc, char *argv[]) { if (argc != 3) usage(argv[0]); rv = ecp_init(&ctx); - printf("ecp_init RV:%d\n", rv); + LOG("ecp_init", rv); ecp_conn_handler_init(&handler, handle_open, NULL, handle_msg, NULL); ecp_ctx_set_handler(&ctx, CTYPE_TEST, &handler); rv = ecp_dhkey_gen(&key_perma); - printf("ecp_dhkey_gen RV:%d\n", rv); + LOG("ecp_dhkey_gen", rv); rv = ecp_sock_create(&sock, &ctx, &key_perma); - printf("ecp_sock_create RV:%d\n", rv); + LOG("ecp_sock_create", rv); rv = ecp_sock_open(&sock, NULL); - printf("ecp_sock_open RV:%d\n", rv); + LOG("ecp_sock_open", rv); rv = ecp_start_receiver(&sock); - printf("ecp_start_receiver RV:%d\n", rv); + LOG("ecp_start_receiver", rv); rv = ecp_util_load_key(argv[2], &node_pub, NULL); - printf("ecp_util_load_key RV:%d\n", rv); + LOG("ecp_util_load_key", rv); ecp_node_init(&node, &node_pub, NULL); rv = ecp_node_set_addr(&node, argv[1]); - printf("ecp_node_set_addr RV:%d\n", rv); + LOG("ecp_node_set_addr", rv); ecp_conn_init(&conn, &sock, CTYPE_TEST); rv = ecp_conn_open(&conn, &node); - printf("ecp_conn_open RV:%d\n", rv); + LOG("ecp_conn_open", rv); while (1) sleep(1); } -- cgit v1.2.3