From: Harlan Stenn Date: Thu, 3 Dec 2015 12:13:19 +0000 (+0000) Subject: merge cleanup X-Git-Tag: NTP_4_3_86~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e99ce330e1c99fa315607ddfd9efd1952d461ccd;p=thirdparty%2Fntp.git merge cleanup bk: 566031df3Ch8n5R5gKIs_MafCGxqtQ --- diff --git a/ChangeLog b/ChangeLog index e1a58673e..37d7c4f2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Below are from 4.2.8p5: +* CID 1341527: Quiet a CHECKED_RETURN in sntp/tests/t-log.c. HStenn. +* CID 1341533: Missing assertion in sntp/tests/t-log.c. HStenn. +* CID 1341534: Resource leak in tests/ntpd/t-ntp_signd.c. HStenn. +* CID 1341535: Resource leak in tests/ntpd/t-ntp_signd.c. HStenn. +* CID 1341536: Resource leak in tests/ntpd/t-ntp_signd.c. HStenn. +* CID 1341537: Resource leak in tests/ntpd/t-ntp_signd.c. HStenn. +* CID 1341538: Memory leak in tests/ntpd/ntp_prio_q.c:262. HStenn. +* Header cleanup in tests/sandbox/uglydate.c. Harlan Stenn. +* Header cleanup in tests/libntp/sfptostr.c. Harlan Stenn. (4.3.85) 2015/12/02 Released by Harlan Stenn Below are from 4.2.8p5: * [Bug 2829] Look at pipe_fds in ntpd.c (did so. perlinger@ntp.org) diff --git a/tests/libntp/run-sfptostr.c b/tests/libntp/run-sfptostr.c index bae4e5f48..1dba912d5 100644 --- a/tests/libntp/run-sfptostr.c +++ b/tests/libntp/run-sfptostr.c @@ -24,6 +24,7 @@ #include #include "config.h" #include "ntp_fp.h" +#include "ntp_stdlib.h" //=======External Functions This Runner Calls===== extern void setUp(void); @@ -54,14 +55,14 @@ int main(int argc, char *argv[]) { progname = argv[0]; UnityBegin("sfptostr.c"); - RUN_TEST(test_PositiveInteger, 12); - RUN_TEST(test_NegativeInteger, 13); - RUN_TEST(test_PositiveIntegerPositiveFraction, 14); - RUN_TEST(test_NegativeIntegerNegativeFraction, 15); - RUN_TEST(test_PositiveIntegerNegativeFraction, 16); - RUN_TEST(test_NegativeIntegerPositiveFraction, 17); - RUN_TEST(test_SingleDecimalInteger, 18); - RUN_TEST(test_SingleDecimalRounding, 19); + RUN_TEST(test_PositiveInteger, 13); + RUN_TEST(test_NegativeInteger, 14); + RUN_TEST(test_PositiveIntegerPositiveFraction, 15); + RUN_TEST(test_NegativeIntegerNegativeFraction, 16); + RUN_TEST(test_PositiveIntegerNegativeFraction, 17); + RUN_TEST(test_NegativeIntegerPositiveFraction, 18); + RUN_TEST(test_SingleDecimalInteger, 19); + RUN_TEST(test_SingleDecimalRounding, 20); return (UnityEnd()); } diff --git a/tests/sandbox/run-uglydate.c b/tests/sandbox/run-uglydate.c index e65cd0109..5a5a7161d 100644 --- a/tests/sandbox/run-uglydate.c +++ b/tests/sandbox/run-uglydate.c @@ -24,6 +24,7 @@ #include #include "config.h" #include "ntp_fp.h" +#include "ntp_stdlib.h" //=======External Functions This Runner Calls===== extern void setUp(void); @@ -47,7 +48,7 @@ int main(int argc, char *argv[]) { progname = argv[0]; UnityBegin("uglydate.c"); - RUN_TEST(test_ConstantDateTime, 9); + RUN_TEST(test_ConstantDateTime, 10); return (UnityEnd()); }