diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2019-03-07 13:01:16 +0000 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2019-03-07 13:01:16 +0000 |
| commit | 360c01464aee3bc4c520898a675f35967db09ac2 (patch) | |
| tree | c244e3f6baebbb7d13d8dd0d4ee570773cb3c579 /tests/libntp/run-sbprintf.c | |
| parent | c7f4d2332394d5600fe4e14c530ede36b0ff29b0 (diff) | |
Diffstat (limited to 'tests/libntp/run-sbprintf.c')
| -rw-r--r-- | tests/libntp/run-sbprintf.c | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/tests/libntp/run-sbprintf.c b/tests/libntp/run-sbprintf.c new file mode 100644 index 000000000000..996139613f5c --- /dev/null +++ b/tests/libntp/run-sbprintf.c @@ -0,0 +1,76 @@ +/* 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_stdlib.h" +#include <errno.h> + +//=======External Functions This Runner Calls===== +extern void setUp(void); +extern void tearDown(void); +extern void test_NullBuf1(void); +extern void test_NullBuf2(void); +extern void test_EndBeyond(void); +extern void test_SmallBuf(void); +extern void test_MatchBuf(void); +extern void test_BigBuf(void); +extern void test_SimpleArgs(void); +extern void test_Increment1(void); + + +//=======Suite Setup===== +static void suite_setup(void) +{ +extern int change_logfile(const char*, int); +change_logfile("stderr", 0); +} + +//=======Test Reset Option===== +void resetTest(void); +void resetTest(void) +{ + tearDown(); + setUp(); +} + +char const *progname; + + +//=======MAIN===== +int main(int argc, char *argv[]) +{ + progname = argv[0]; + suite_setup(); + UnityBegin("sbprintf.c"); + RUN_TEST(test_NullBuf1, 7); + RUN_TEST(test_NullBuf2, 14); + RUN_TEST(test_EndBeyond, 23); + RUN_TEST(test_SmallBuf, 33); + RUN_TEST(test_MatchBuf, 44); + RUN_TEST(test_BigBuf, 55); + RUN_TEST(test_SimpleArgs, 66); + RUN_TEST(test_Increment1, 78); + + return (UnityEnd()); +} |
