From: Lokesh Walase Date: Fri, 24 Jul 2015 06:31:24 +0000 (+0530) Subject: ntp signd testing X-Git-Tag: NTP_4_3_67~2^2~2^2~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c22775a76cf85cde2d38f993336c6ac860f02ca3;p=thirdparty%2Fntp.git ntp signd testing bk: 55b1dbbciS9hp_Kf4DZOYAFkuaZ6Eg --- diff --git a/tests/ntpd/ntp_signd.c b/tests/ntpd/ntp_signd.c new file mode 100644 index 000000000..622ca93d8 --- /dev/null +++ b/tests/ntpd/ntp_signd.c @@ -0,0 +1,24 @@ +#include "config.h" + +#include "ntp.h" +#include "ntp_calendar.h" +#include "ntp_stdlib.h" + +#include "unity.h" + +#include "test-libntp.h" + + +void +test_ux_socket_connect(void){ + TEST_ASSERT_EQUAL(-1, ux_socket_connect(NULL)); + + + //write_all() + char *socketName = "Random_Socket_Name"; + int length = strlen(socketName); + +} + +void +test_write_all(void)