X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=blobdiff_plain;f=t%2Flibsysdb_test.h;h=9d83dc6cab5afb8febac271144045c2c3fdee13f;hp=ebe1959e2a058092fd458f0ca38282bffe8f1f0d;hb=47b37be23f31d28f358d394d5377a6f7aed2f2fd;hpb=3509e19b205784e1b56374683127d3fd845afb15 diff --git a/t/libsysdb_test.h b/t/libsysdb_test.h index ebe1959..9d83dc6 100644 --- a/t/libsysdb_test.h +++ b/t/libsysdb_test.h @@ -28,6 +28,8 @@ #ifndef T_LIBSYSDB_H #define T_LIBSYSDB_H 1 +#include "config.h" + #include "sysdb.h" #include "core/object.h" @@ -44,10 +46,23 @@ /* type = */ { sizeof(sdb_object_t), NULL, NULL }, \ /* ref_cnt = */ 1, /* name = */ (name) } +/* + * test-related data-types + */ + +typedef struct { + Suite *(*creator)(void); + const char *msg; +} suite_creator_t; + /* * test suites */ +/* t/core/object_test */ +Suite * +core_object_suite(void); + /* t/utils/dbi_test */ Suite * util_dbi_suite(void); @@ -60,6 +75,10 @@ util_llist_suite(void); Suite * util_strbuf_suite(void); +/* t/utils/unixsock_test */ +Suite * +util_unixsock_suite(void); + #endif /* T_LIBSYSDB_H */ /* vim: set tw=78 sw=4 ts=4 noexpandtab : */