1276da39aSCy Schubert /* AUTOGENERATED FILE. DO NOT EDIT. */ 2276da39aSCy Schubert 3276da39aSCy Schubert //=======Test Runner Used To Run Each Test Below===== 4276da39aSCy Schubert #define RUN_TEST(TestFunc, TestLineNum) \ 5276da39aSCy Schubert { \ 6276da39aSCy Schubert Unity.CurrentTestName = #TestFunc; \ 7276da39aSCy Schubert Unity.CurrentTestLineNumber = TestLineNum; \ 8276da39aSCy Schubert Unity.NumberOfTests++; \ 9276da39aSCy Schubert if (TEST_PROTECT()) \ 10276da39aSCy Schubert { \ 11276da39aSCy Schubert setUp(); \ 12276da39aSCy Schubert TestFunc(); \ 13276da39aSCy Schubert } \ 14276da39aSCy Schubert if (TEST_PROTECT() && !TEST_IS_IGNORED) \ 15276da39aSCy Schubert { \ 16276da39aSCy Schubert tearDown(); \ 17276da39aSCy Schubert } \ 18276da39aSCy Schubert UnityConcludeTest(); \ 19276da39aSCy Schubert } 20276da39aSCy Schubert 21276da39aSCy Schubert //=======Automagically Detected Files To Include===== 22276da39aSCy Schubert #include "unity.h" 23276da39aSCy Schubert #include <setjmp.h> 24276da39aSCy Schubert #include <stdio.h> 259034852cSGleb Smirnoff #include "config.h" 269034852cSGleb Smirnoff #include "ntp_types.h" 279034852cSGleb Smirnoff #include "sntptest.h" 289034852cSGleb Smirnoff #include "crypto.h" 29276da39aSCy Schubert 30276da39aSCy Schubert //=======External Functions This Runner Calls===== 31276da39aSCy Schubert extern void setUp(void); 32276da39aSCy Schubert extern void tearDown(void); 33*f5f40dd6SCy Schubert extern void test_MakeSHAKE128Mac(void); 34276da39aSCy Schubert extern void test_MakeSHA1Mac(void); 3509100258SXin LI extern void test_MakeCMac(void); 36*f5f40dd6SCy Schubert extern void test_VerifySHAKE128(void); 37276da39aSCy Schubert extern void test_VerifySHA1(void); 3809100258SXin LI extern void test_VerifyCMAC(void); 39276da39aSCy Schubert extern void test_VerifyFailure(void); 40276da39aSCy Schubert extern void test_PacketSizeNotMultipleOfFourBytes(void); 41276da39aSCy Schubert 42276da39aSCy Schubert 4309100258SXin LI //=======Suite Setup===== 4409100258SXin LI static void suite_setup(void) 4509100258SXin LI { 462d4e511cSCy Schubert extern int change_iobufs(int); 4709100258SXin LI extern int change_logfile(const char*, int); 482d4e511cSCy Schubert change_iobufs(1); 4909100258SXin LI change_logfile("stderr", 0); 5009100258SXin LI } 5109100258SXin LI 52276da39aSCy Schubert //=======Test Reset Option===== 539034852cSGleb Smirnoff void resetTest(void); 549034852cSGleb Smirnoff void resetTest(void) 55276da39aSCy Schubert { 56276da39aSCy Schubert tearDown(); 57276da39aSCy Schubert setUp(); 58276da39aSCy Schubert } 59276da39aSCy Schubert 609034852cSGleb Smirnoff char const *progname; 61276da39aSCy Schubert 62276da39aSCy Schubert 63276da39aSCy Schubert //=======MAIN===== 64276da39aSCy Schubert int main(int argc, char *argv[]) 65276da39aSCy Schubert { 66276da39aSCy Schubert progname = argv[0]; 6709100258SXin LI suite_setup(); 68276da39aSCy Schubert UnityBegin("crypto.c"); 69*f5f40dd6SCy Schubert RUN_TEST(test_MakeSHAKE128Mac, 14); 70*f5f40dd6SCy Schubert RUN_TEST(test_MakeSHA1Mac, 15); 71*f5f40dd6SCy Schubert RUN_TEST(test_MakeCMac, 16); 72*f5f40dd6SCy Schubert RUN_TEST(test_VerifySHAKE128, 17); 73*f5f40dd6SCy Schubert RUN_TEST(test_VerifySHA1, 18); 74*f5f40dd6SCy Schubert RUN_TEST(test_VerifyCMAC, 19); 75*f5f40dd6SCy Schubert RUN_TEST(test_VerifyFailure, 20); 76*f5f40dd6SCy Schubert RUN_TEST(test_PacketSizeNotMultipleOfFourBytes, 21); 77276da39aSCy Schubert 78276da39aSCy Schubert return (UnityEnd()); 79276da39aSCy Schubert } 80