tests: add signal disconnection test
[platform/upstream/glib.git] / tests / module-test.c
index c83dfb2..f54a015 100644 (file)
  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
  */
 
+#undef G_DISABLE_ASSERT
+#undef G_LOG_DOMAIN
+
 #include <gmodule.h>
+#include <string.h>
 
 gchar* global_state;
 
+G_MODULE_EXPORT void g_clash_func (void);
+
 G_MODULE_EXPORT void
 g_clash_func (void)
 {
@@ -67,26 +73,21 @@ test_states (const gchar *global, const gchar *gplugin_a,
 static SimpleFunc plugin_clash_func = NULL;
 
 int
-main (int   arg,
-      char *argv[])
+main (int    argc,
+      char **argv)
 {
   GModule *module_self, *module_a, *module_b;
-  gchar *dir;
   gchar *plugin_a, *plugin_b;
   SimpleFunc f_a, f_b, f_self;
   GModuleFunc gmod_f;
 
-  if (!g_module_supported ())
-    return 0;
+  g_test_init (&argc, &argv, NULL);
 
-  dir = g_get_current_dir ();
-
-  plugin_a = g_strconcat (dir, G_DIR_SEPARATOR_S "libmoduletestplugin_a", 
-                         NULL);
-  plugin_b = g_strconcat (dir, G_DIR_SEPARATOR_S "libmoduletestplugin_b", 
-                         NULL);
+  if (!g_module_supported ())
+    g_error ("dynamic modules not supported");
 
-  g_free (dir);
+  plugin_a = g_test_build_filename (G_TEST_BUILT, "libmoduletestplugin_a", NULL);
+  plugin_b = g_test_build_filename (G_TEST_BUILT, "libmoduletestplugin_b", NULL);
 
   /* module handles */
   
@@ -94,7 +95,7 @@ main (int   arg,
   if (!module_self)
     g_error ("error: %s", g_module_error ());
 
-  if (!g_module_symbol (module_self, "g_module_close", (gpointer) &f_self))
+  if (!g_module_symbol (module_self, "g_module_close", (gpointer *) &f_self))
     g_error ("error: %s", g_module_error ());
 
   module_a = g_module_open (plugin_a, G_MODULE_BIND_LAZY);
@@ -108,21 +109,21 @@ main (int   arg,
   /* get plugin state vars */
 
   if (!g_module_symbol (module_a, "gplugin_a_state", 
-                       (gpointer) &gplugin_a_state))
+                       (gpointer *) &gplugin_a_state))
     g_error ("error: %s", g_module_error ());
   
   if (!g_module_symbol (module_b, "gplugin_b_state", 
-                       (gpointer) &gplugin_b_state))
+                       (gpointer *) &gplugin_b_state))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, "check-init");
   
   /* get plugin specific symbols and call them
    */
-  if (!g_module_symbol (module_a, "gplugin_a_func", (gpointer) &f_a))
+  if (!g_module_symbol (module_a, "gplugin_a_func", (gpointer *) &f_a))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
  
-  if (!g_module_symbol (module_b, "gplugin_b_func", (gpointer) &f_b))
+  if (!g_module_symbol (module_b, "gplugin_b_func", (gpointer *) &f_b))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
  
@@ -135,15 +136,15 @@ main (int   arg,
   /* get and call globally clashing functions
    */
  
-  if (!g_module_symbol (module_self, "g_clash_func", (gpointer) &f_self))
+  if (!g_module_symbol (module_self, "g_clash_func", (gpointer *) &f_self))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
 
-  if (!g_module_symbol (module_a, "g_clash_func", (gpointer) &f_a))
+  if (!g_module_symbol (module_a, "g_clash_func", (gpointer *) &f_a))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
  
-  if (!g_module_symbol (module_b, "g_clash_func", (gpointer) &f_b))
+  if (!g_module_symbol (module_b, "g_clash_func", (gpointer *) &f_b))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
  
@@ -158,11 +159,11 @@ main (int   arg,
 
   /* get and call clashing plugin functions  */
 
-  if (!g_module_symbol (module_a, "gplugin_clash_func", (gpointer) &f_a))
+  if (!g_module_symbol (module_a, "gplugin_clash_func", (gpointer *) &f_a))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
 
-  if (!g_module_symbol (module_b, "gplugin_clash_func", (gpointer) &f_b))
+  if (!g_module_symbol (module_b, "gplugin_clash_func", (gpointer *) &f_b))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
 
@@ -176,7 +177,7 @@ main (int   arg,
 
   /* call gmodule function from A  */
 
-  if (!g_module_symbol (module_a, "gplugin_a_module_func", (gpointer) &gmod_f))
+  if (!g_module_symbol (module_a, "gplugin_a_module_func", (gpointer *) &gmod_f))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);