X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Flibsysdb_test.c;h=5b1b34df36b261621743eceb43f537b1e05cefa9;hb=da8a2d232053383bebb9c9f483a674a8e1021a57;hp=7ce41247c679a8b9a2f636d5e9def467d8c1e311;hpb=23760ca65713cd9b8338f09bf45ec20ff4c3ef8d;p=sysdb.git diff --git a/t/libsysdb_test.c b/t/libsysdb_test.c index 7ce4124..5b1b34d 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,12 +42,21 @@ 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_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;