diff options
Diffstat (limited to 'contrib/ntp/tests/ntpd/run-ntp_restrict.c')
-rw-r--r-- | contrib/ntp/tests/ntpd/run-ntp_restrict.c | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/contrib/ntp/tests/ntpd/run-ntp_restrict.c b/contrib/ntp/tests/ntpd/run-ntp_restrict.c new file mode 100644 index 0000000..0d945eb --- /dev/null +++ b/contrib/ntp/tests/ntpd/run-ntp_restrict.c @@ -0,0 +1,68 @@ +/* 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 "ntpd.h" +#include "ntp_lists.h" + +//=======External Functions This Runner Calls===== +extern void setUp(void); +extern void tearDown(void); +extern void test_RestrictionsAreEmptyAfterInit(void); +extern void test_ReturnsCorrectDefaultRestrictions(void); +extern void test_HackingDefaultRestriction(void); +extern void test_CantRemoveDefaultEntry(void); +extern void test_AddingNewRestriction(void); +extern void test_TheMostFittingRestrictionIsMatched(void); +extern void test_DeletedRestrictionIsNotMatched(void); +extern void test_RestrictUnflagWorks(void); + + +//=======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("ntp_restrict.c"); + RUN_TEST(test_RestrictionsAreEmptyAfterInit, 59); + RUN_TEST(test_ReturnsCorrectDefaultRestrictions, 85); + RUN_TEST(test_HackingDefaultRestriction, 96); + RUN_TEST(test_CantRemoveDefaultEntry, 119); + RUN_TEST(test_AddingNewRestriction, 130); + RUN_TEST(test_TheMostFittingRestrictionIsMatched, 143); + RUN_TEST(test_DeletedRestrictionIsNotMatched, 165); + RUN_TEST(test_RestrictUnflagWorks, 189); + + return (UnityEnd()); +} |