Drop g_thread_init from tests
authorMatthias Clasen <mclasen@redhat.com>
Mon, 2 Apr 2012 11:59:23 +0000 (07:59 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 2 Apr 2012 13:09:11 +0000 (09:09 -0400)
This is not needed anymore.

tests/refcount/Makefile.am
tests/refcount/closures.c
tests/refcount/objects.c
tests/refcount/objects2.c
tests/refcount/properties.c
tests/refcount/properties2.c
tests/refcount/properties3.c
tests/refcount/signals.c

index 1c7d71648d4247008f68705f7259e8f7567bf7b7..49a5dc28f9494518df439e1b69412aa595d385fa 100644 (file)
@@ -6,11 +6,10 @@ INCLUDES =                                    \
        $(GLIB_DEBUG_FLAGS)
 
 libglib = $(top_builddir)/glib/libglib-2.0.la
-libgthread = $(top_builddir)/gthread/libgthread-2.0.la
 libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la
 libgobject = $(top_builddir)/gobject/libgobject-2.0.la
 
-LDADD = $(libglib) $(libgobject) $(libgthread) $(G_THREAD_LIBS)
+LDADD = $(libglib) $(libgobject)
 
 test_programs =                                \
        closures                                \
index 5bd20a042418824add5901fdfed504aa7416b5b9..d0a64f0cef6237e521cce4dbcd8a54613390150b 100644 (file)
@@ -241,7 +241,6 @@ main (int    argc,
   GTest *object;
   guint i;
 
-  g_thread_init (NULL);
   g_print ("START: %s\n", argv[0]);
   g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | g_log_set_always_fatal (G_LOG_FATAL_MASK));
   g_type_init ();
index 1c40c64742b6fd8c2ed61ce02ed6041e5c53f4af..230a160014f1f6fa9def04b0b3693ccf73def664 100644 (file)
@@ -117,7 +117,6 @@ main (int argc, char **argv)
   GArray *test_threads;
   const guint n_threads = 5;
 
-  g_thread_init (NULL);
   g_print ("START: %s\n", argv[0]);
   g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | g_log_set_always_fatal (G_LOG_FATAL_MASK));
   g_type_init ();
index b57863d4bfa757bf1e00c377cff9e9129437a1b1..66a076bbc25905d880ca659b027ecda271699b45 100644 (file)
@@ -101,7 +101,6 @@ main (int argc, char **argv)
   gint i;
   GTest *test;
 
-  g_thread_init (NULL);
   g_print ("START: %s\n", argv[0]);
   g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | g_log_set_always_fatal (G_LOG_FATAL_MASK));
   g_type_init ();
@@ -113,6 +112,6 @@ main (int argc, char **argv)
   }
 
   g_print ("\n");
-  
+
   return 0;
 }
index a69e3ecc3dabe8a4100c2dbb5987c3b71bd822c6..f7c29280afd17e66178f4ec1b38afed69183a51e 100644 (file)
@@ -194,7 +194,6 @@ main (int argc, char **argv)
   GArray *test_threads;
   const gint n_threads = 5;
 
-  g_thread_init (NULL);
   g_print ("START: %s\n", argv[0]);
   g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | g_log_set_always_fatal (G_LOG_FATAL_MASK));
   g_type_init ();
index 90ea42bf5547c63e4b622f8e65f4fb85230e3b40..3bef8e54a4a587367ed6cb1c51b4eae629113e66 100644 (file)
@@ -178,7 +178,6 @@ main (int argc, char **argv)
   gint i;
   GTest *test;
 
-  g_thread_init (NULL);
   g_print ("START: %s\n", argv[0]);
   g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | g_log_set_always_fatal (G_LOG_FATAL_MASK));
   g_type_init ();
index 56661d6550e16a81a2ecc65ae74e6a4c91dc126e..66f68b5bc8a09e3addadd68dff6ca1358d39dbc9 100644 (file)
@@ -159,8 +159,6 @@ main (int argc, char **argv)
   GArray *test_threads;
   const gint n_threads = 5;
 
-  g_thread_init (NULL);
-
   g_print ("START: %s\n", argv[0]);
   g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | g_log_set_always_fatal (G_LOG_FATAL_MASK));
   g_type_init ();
index 90bae419b2e22c0052829b7cb5c02163baa1ec42..b8b4c45a17c39221c42d429d13893d430f6a8ec6 100644 (file)
@@ -98,9 +98,6 @@ my_test_class_init (GTestClass * klass)
 
   parent_class = g_type_class_ref (G_TYPE_OBJECT);
 
-  if (!g_thread_supported ())
-    g_thread_init (NULL);
-
   gobject_class->dispose = my_test_dispose;
   gobject_class->set_property = my_test_set_property;
   gobject_class->get_property = my_test_get_property;
@@ -239,7 +236,6 @@ main (int argc, char **argv)
   GArray *test_threads;
   const gint n_threads = 1;
 
-  g_thread_init (NULL);
   g_print ("START: %s\n", argv[0]);
   g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | g_log_set_always_fatal (G_LOG_FATAL_MASK));
   g_type_init ();