Mercurial > pidgin
view libgaim/tests/check_libgaim.c @ 15171:a00712d0522e
[gaim-migrate @ 17957]
Show 'ABC is typing...' in the conversation window for typing notification.
seanegan suggested this, and it sounded like an interesting thing to do.
The change in gnttextview.c will need some more work if it is to be used for
some other task, but its current use should be OK.
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Mon, 11 Dec 2006 06:02:15 +0000 |
parents | 4ba77924fc08 |
children |
line wrap: on
line source
#include <glib.h> #include <stdlib.h> #include "../core.h" #include "../eventloop.h" #include "tests.h" /****************************************************************************** * libgaim goodies *****************************************************************************/ static guint gaim_check_input_add(gint fd, GaimInputCondition condition, GaimInputFunction function, gpointer data) { /* this is a no-op for now, feel free to implement it */ return 0; } static GaimEventLoopUiOps eventloop_ui_ops = { g_timeout_add, (guint (*)(guint))g_source_remove, gaim_check_input_add, (guint (*)(guint))g_source_remove, }; static void gaim_check_init(void) { gchar *home_dir; gaim_eventloop_set_ui_ops(&eventloop_ui_ops); /* build our fake home directory */ home_dir = g_build_path(BUILDDIR, "libgaim", "tests", "home", NULL); gaim_util_set_user_dir(home_dir); g_free(home_dir); gaim_core_init("check"); } /****************************************************************************** * Check meat and potatoes *****************************************************************************/ Suite* master_suite(void) { Suite *s = suite_create("Master Suite"); return s; } int main(void) { int number_failed; SRunner *sr = srunner_create (master_suite()); srunner_add_suite(sr, cipher_suite()); srunner_add_suite(sr, jabber_jutil_suite()); srunner_add_suite(sr, util_suite()); /* make this a libgaim "ui" */ gaim_check_init(); srunner_run_all (sr, CK_NORMAL); number_failed = srunner_ntests_failed (sr); srunner_free (sr); gaim_core_quit(); return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE; }