From: Damir Tomic Date: Thu, 18 Jun 2015 08:21:18 +0000 (+0200) Subject: caljulian.c: X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b85c686a233aa2a2c24983b457d6eb0c8091084e;p=thirdparty%2Fntp.git caljulian.c: included malloc.h to avoid implicit declaration bk: 55827f7eMLm3ZTNP7-vz2RJrdA32Vw --- diff --git a/tests/libntp/caljulian.c b/tests/libntp/caljulian.c index f73c93730..dac8c3e73 100644 --- a/tests/libntp/caljulian.c +++ b/tests/libntp/caljulian.c @@ -6,6 +6,7 @@ #include "test-libntp.h" #include +#include //added struct to calendar! diff --git a/tests/libntp/run-caljulian.c b/tests/libntp/run-caljulian.c index 1f65b85e1..debb74d6a 100644 --- a/tests/libntp/run-caljulian.c +++ b/tests/libntp/run-caljulian.c @@ -48,10 +48,10 @@ int main(int argc, char *argv[]) progname = argv[0]; Unity.TestFile = "caljulian.c"; UnityBegin("caljulian.c"); - RUN_TEST(test_RegularTime, 71); - RUN_TEST(test_LeapYear, 82); - RUN_TEST(test_uLongBoundary, 93); - RUN_TEST(test_uLongWrapped, 104); + RUN_TEST(test_RegularTime, 72); + RUN_TEST(test_LeapYear, 83); + RUN_TEST(test_uLongBoundary, 94); + RUN_TEST(test_uLongWrapped, 105); return (UnityEnd()); }