12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include <check.h>
- #include <errno.h>
- #include <stdio.h>
- #include <unistd.h>
-
- #include "ttail_check.h"
- #include "ttail.h"
- #include "ttail_init.h"
-
- START_TEST (test_argparse_fmt_short)
- {
- ttail_t *t;
- char *args[] = {"foo", "-f", "%m"};
- t = ttail_init(3, args);
- ck_assert(t != NULL);
- }
- END_TEST
-
- START_TEST (test_argparse_fmt_long)
- {
- ttail_t *t;
- char *args[] = {"foo", "--date-format", "%m"};
- t = ttail_init(3, args);
- ck_assert(t != NULL);
- }
- END_TEST
-
- START_TEST (test_argparse_fmt_multiple)
- {
- ttail_t *t;
- char *args[] = {"foo", "-f", "%m", "-f", "%d"};
- t = ttail_init(5, args);
- ck_assert(t == NULL);
- }
- END_TEST
-
- TTAIL_CHECK_START( "ttail argument parsing checks", \
- "date format arguments parsing")
- TTAIL_ADD_TEST(test_argparse_fmt_short);
- TTAIL_ADD_TEST(test_argparse_fmt_long);
- TTAIL_ADD_TEST(test_argparse_fmt_multiple);
- TTAIL_CHECK_END
|