From: Lokesh Walase Date: Fri, 24 Jul 2015 06:31:24 +0000 (+0530) Subject: ntp signd testing X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9bb91aec35243c1dcd538aacb45b08ee82a9243d;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)