diff options
Diffstat (limited to 'contrib/ntp/tests/libntp/run-decodenetnum.c')
-rw-r--r-- | contrib/ntp/tests/libntp/run-decodenetnum.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/contrib/ntp/tests/libntp/run-decodenetnum.c b/contrib/ntp/tests/libntp/run-decodenetnum.c index 2e0a7e5..014151e 100644 --- a/contrib/ntp/tests/libntp/run-decodenetnum.c +++ b/contrib/ntp/tests/libntp/run-decodenetnum.c @@ -22,11 +22,13 @@ #include "unity.h" #include <setjmp.h> #include <stdio.h> +#include "config.h" +#include "ntp_stdlib.h" +#include "sockaddrtest.h" //=======External Functions This Runner Calls===== extern void setUp(void); extern void tearDown(void); -void resetTest(void); extern void test_IPv4AddressOnly(void); extern void test_IPv4AddressWithPort(void); extern void test_IPv6AddressOnly(void); @@ -36,27 +38,27 @@ extern void test_IllegalCharInPort(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 = "decodenetnum.c"; UnityBegin("decodenetnum.c"); - RUN_TEST(test_IPv4AddressOnly, 9); - RUN_TEST(test_IPv4AddressWithPort, 22); - RUN_TEST(test_IPv6AddressOnly, 35); - RUN_TEST(test_IPv6AddressWithPort, 55); - RUN_TEST(test_IllegalAddress, 75); - RUN_TEST(test_IllegalCharInPort, 82); + RUN_TEST(test_IPv4AddressOnly, 7); + RUN_TEST(test_IPv4AddressWithPort, 8); + RUN_TEST(test_IPv6AddressOnly, 10); + RUN_TEST(test_IPv6AddressWithPort, 11); + RUN_TEST(test_IllegalAddress, 13); + RUN_TEST(test_IllegalCharInPort, 14); return (UnityEnd()); } |