X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=blobdiff_plain;f=t%2Flibsysdb_test.c;h=96bb9076cf16f14e6b4afe79de8a3bdec6d54181;hp=91909b8448bd2ed7562af9a65055075b734b8e6f;hb=3ba81224dac4d31ea5ad651db569543825ea5078;hpb=2e2e989712ec5991526b3aaeec011440adb5bf7e diff --git a/t/libsysdb_test.c b/t/libsysdb_test.c index 91909b8..96bb907 100644 --- a/t/libsysdb_test.c +++ b/t/libsysdb_test.c @@ -25,10 +25,15 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#if HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + #include "libsysdb_test.h" #include #include +#include int main(void) @@ -37,13 +42,22 @@ main(void) size_t i; suite_creator_t creators[] = { + { core_data_suite, NULL }, { core_object_suite, NULL }, + { core_store_suite, NULL }, + { core_store_lookup_suite, NULL }, + { core_time_suite, NULL }, + { fe_conn_suite, NULL }, + { fe_parser_suite, NULL }, + { fe_sock_suite, NULL }, { util_channel_suite, NULL }, { util_dbi_suite, NULL }, { util_llist_suite, NULL }, { util_strbuf_suite, NULL }, }; + putenv("TZ=UTC"); + for (i = 0; i < SDB_STATIC_ARRAY_LEN(creators); ++i) { SRunner *sr; Suite *s;