diff options
Diffstat (limited to 'contrib/ntp/tests/libntp/run-refnumtoa.c')
-rw-r--r-- | contrib/ntp/tests/libntp/run-refnumtoa.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/contrib/ntp/tests/libntp/run-refnumtoa.c b/contrib/ntp/tests/libntp/run-refnumtoa.c index 60981ca..bb9fb60 100644 --- a/contrib/ntp/tests/libntp/run-refnumtoa.c +++ b/contrib/ntp/tests/libntp/run-refnumtoa.c @@ -22,32 +22,35 @@ #include "unity.h" #include <setjmp.h> #include <stdio.h> +#include "config.h" +#include "ntp_net.h" +#include "ntp_refclock.h" //=======External Functions This Runner Calls===== extern void setUp(void); extern void tearDown(void); -extern void test_LocalClock(); -extern void test_UnknownId(); +extern void test_LocalClock(void); +extern void test_UnknownId(void); //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); } -char *progname; +char const *progname; //=======MAIN===== int main(int argc, char *argv[]) { progname = argv[0]; - Unity.TestFile = "refnumtoa.c"; UnityBegin("refnumtoa.c"); - RUN_TEST(test_LocalClock, 13); - RUN_TEST(test_UnknownId, 41); + RUN_TEST(test_LocalClock, 12); + RUN_TEST(test_UnknownId, 13); return (UnityEnd()); } |