diff options
Diffstat (limited to 'contrib/ntp/sntp/tests/run-networking.c')
-rw-r--r-- | contrib/ntp/sntp/tests/run-networking.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/contrib/ntp/sntp/tests/run-networking.c b/contrib/ntp/sntp/tests/run-networking.c index d5e822c..70caaa0 100644 --- a/contrib/ntp/sntp/tests/run-networking.c +++ b/contrib/ntp/sntp/tests/run-networking.c @@ -22,6 +22,9 @@ #include "unity.h" #include <setjmp.h> #include <stdio.h> +#include "config.h" +#include "sntptest.h" +#include "networking.h" //=======External Functions This Runner Calls===== extern void setUp(void); @@ -29,20 +32,20 @@ extern void tearDown(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 = "networking.c"; UnityBegin("networking.c"); return (UnityEnd()); |