|
| static int | find_test_name (const char *testname) |
| |
| static int | should_test_run (const char *testname) |
| |
| static void | reset_status (void) |
| |
| static void | update_status (void) |
| |
| static void | end_suite (abts_suite *suite) |
| |
| abts_suite * | abts_add_suite (abts_suite *suite, const char *suite_name_full) |
| |
| static void | abts_free_suite (abts_suite *suite) |
| |
| void | abts_run_test (abts_suite *ts, test_func f, void *value) |
| |
| static void | report_summary (const char *kind_header, const char *name_header, const char *percent_header) |
| |
| static int | report (abts_suite *suite) |
| |
| void | abts_log_message (const char *fmt,...) |
| |
| void | abts_int_equal (abts_case *tc, const int expected, const int actual, int lineno) |
| |
| void | abts_uint_equal (abts_case *tc, const unsigned int expected, const unsigned int actual, int lineno) |
| |
| void | abts_long_equal (abts_case *tc, const long expected, const long actual, int lineno) |
| |
| void | abts_ulong_equal (abts_case *tc, const unsigned long expected, const unsigned long actual, int lineno) |
| |
| void | abts_llong_equal (abts_case *tc, const long long expected, const long long actual, int lineno) |
| |
| void | abts_ullong_equal (abts_case *tc, const unsigned long long expected, const unsigned long long actual, int lineno) |
| |
| void | abts_size_equal (abts_case *tc, const size_t expected, const size_t actual, int lineno) |
| |
| void | abts_int_nequal (abts_case *tc, const int expected, const int actual, int lineno) |
| |
| void | abts_uint_nequal (abts_case *tc, const unsigned int expected, const unsigned int actual, int lineno) |
| |
| void | abts_long_nequal (abts_case *tc, const long expected, const long actual, int lineno) |
| |
| void | abts_ulong_nequal (abts_case *tc, const unsigned long expected, const unsigned long actual, int lineno) |
| |
| void | abts_llong_nequal (abts_case *tc, const long long expected, const long long actual, int lineno) |
| |
| void | abts_ullong_nequal (abts_case *tc, const unsigned long long expected, const unsigned long long actual, int lineno) |
| |
| void | abts_size_nequal (abts_case *tc, const size_t expected, const size_t actual, int lineno) |
| |
| void | abts_str_equal (abts_case *tc, const char *expected, const char *actual, int lineno) |
| |
| void | abts_str_nequal (abts_case *tc, const char *expected, const char *actual, size_t n, int lineno) |
| |
| void | abts_ptr_notnull (abts_case *tc, const void *ptr, int lineno) |
| |
| void | abts_ptr_equal (abts_case *tc, const void *expected, const void *actual, int lineno) |
| |
| void | abts_fail (abts_case *tc, const char *message, int lineno) |
| |
| void | abts_skip (abts_case *tc, const char *message, int lineno) |
| |
| void | abts_assert (abts_case *tc, const char *message, int condition, int lineno) |
| |
| void | abts_true (abts_case *tc, int condition, int lineno) |
| |
| void | abts_not_impl (abts_case *tc, const char *message, int lineno) |
| |
| int | main (int argc, const char *const argv[]) |
| |