From: Harlan Stenn Date: Sun, 17 Jan 2016 09:03:57 +0000 (+0000) Subject: Disable incomplete t-ntp_signd.c test. Harlan Stenn. X-Git-Tag: NTP_4_2_8P6~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4202b66c3bc7982da79c6a0e30f5f4bfb6e5443;p=thirdparty%2Fntp.git Disable incomplete t-ntp_signd.c test. Harlan Stenn. bk: 569b58fd8D6_xRLanGdg14giBrLSHQ --- diff --git a/ChangeLog b/ChangeLog index fb72336a3..7f336f64d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -28,6 +28,7 @@ * [Bug 2985] bogus calculation in authkeys.c perlinger@ntp.org - implement 'auth_log2()' using integer bithack instead of float calculation * Make leapsec_query debug messages less verbose. Harlan Stenn. +* Disable incomplete t-ntp_signd.c test. Harlan Stenn. --- (4.2.8p5) 2016/01/07 Released by Harlan Stenn diff --git a/tests/ntpd/t-ntp_signd.c b/tests/ntpd/t-ntp_signd.c index 534c940d2..40e7ac07a 100644 --- a/tests/ntpd/t-ntp_signd.c +++ b/tests/ntpd/t-ntp_signd.c @@ -139,6 +139,7 @@ test_send_packet(void) void test_recv_packet(void) { +#if 0 int fd = ux_socket_connect("/socket"); TEST_ASSERT_TRUE(isGE(fd, 0)); @@ -152,6 +153,9 @@ test_recv_packet(void) TEST_ASSERT_EQUAL(0,temp); //0 because nobody sent us anything (yet!) (void)close(fd); +#else + TEST_IGNORE_MESSAGE("test_recv_packet() needs work"); +#endif return; }