diff options
Diffstat (limited to 'contrib/ntp/tests/ntpd/run-t-ntp_signd.c')
-rw-r--r-- | contrib/ntp/tests/ntpd/run-t-ntp_signd.c | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/contrib/ntp/tests/ntpd/run-t-ntp_signd.c b/contrib/ntp/tests/ntpd/run-t-ntp_signd.c new file mode 100644 index 0000000..662cada --- /dev/null +++ b/contrib/ntp/tests/ntpd/run-t-ntp_signd.c @@ -0,0 +1,66 @@ +/* AUTOGENERATED FILE. DO NOT EDIT. */ + +//=======Test Runner Used To Run Each Test Below===== +#define RUN_TEST(TestFunc, TestLineNum) \ +{ \ + Unity.CurrentTestName = #TestFunc; \ + Unity.CurrentTestLineNumber = TestLineNum; \ + Unity.NumberOfTests++; \ + if (TEST_PROTECT()) \ + { \ + setUp(); \ + TestFunc(); \ + } \ + if (TEST_PROTECT() && !TEST_IS_IGNORED) \ + { \ + tearDown(); \ + } \ + UnityConcludeTest(); \ +} + +//=======Automagically Detected Files To Include===== +#include "unity.h" +#include <setjmp.h> +#include <stdio.h> +#include "config.h" +#include "ntp.h" +#include "ntp_calendar.h" +#include "ntp_stdlib.h" +#include "test-libntp.h" + +//=======External Functions This Runner Calls===== +extern void setUp(void); +extern void tearDown(void); +extern void test_connect_incorrect_socket(void); +extern void test_connect_correct_socket(void); +extern void test_write_all(void); +extern void test_send_packet(void); +extern void test_recv_packet(void); +extern void test_send_via_ntp_signd(); + + +//=======Test Reset Option===== +void resetTest(void); +void resetTest(void) +{ + tearDown(); + setUp(); +} + +char const *progname; + + +//=======MAIN===== +int main(int argc, char *argv[]) +{ + progname = argv[0]; + UnityBegin("t-ntp_signd.c"); + RUN_TEST(test_connect_incorrect_socket, 49); + RUN_TEST(test_connect_correct_socket, 54); + RUN_TEST(test_write_all, 74); + RUN_TEST(test_send_packet, 84); + RUN_TEST(test_recv_packet, 93); + RUN_TEST(test_send_via_ntp_signd, 104); + + return (UnityEnd()); +} |