Update contrib.
1 /* Portions copyright (c) 2009 Nokia Corporation. All rights reserved. */
2 #undef G_DISABLE_ASSERT
4 #define G_ERRORCHECK_MUTEXES
10 #include <glib_global.h>
11 #include "mrt2_glib2_test.h"
12 #endif /*__SYMBIAN32__*/
14 locking_thread (gpointer mutex)
16 g_mutex_lock ((GMutex*)mutex);
22 lock_locked_mutex (void)
24 GMutex* mutex = g_mutex_new ();
30 trylock_locked_mutex (void)
32 GMutex* mutex = g_mutex_new ();
34 g_mutex_trylock (mutex);
38 unlock_unlocked_mutex (void)
40 GMutex* mutex = g_mutex_new ();
42 g_mutex_unlock (mutex);
43 g_mutex_unlock (mutex);
47 free_locked_mutex (void)
49 GMutex* mutex = g_mutex_new ();
55 wait_on_unlocked_mutex (void)
57 GMutex* mutex = g_mutex_new ();
58 GCond* cond = g_cond_new ();
59 g_cond_wait (cond, mutex);
63 wait_on_otherwise_locked_mutex (void)
65 GMutex* mutex = g_mutex_new ();
66 GCond* cond = g_cond_new ();
67 GThread* thread = g_thread_create (locking_thread, mutex, TRUE, NULL);
68 g_assert (thread != NULL);
69 g_usleep (G_USEC_PER_SEC);
70 g_cond_wait (cond, mutex);
74 timed_wait_on_unlocked_mutex (void)
76 GMutex* mutex = g_mutex_new ();
77 GCond* cond = g_cond_new ();
78 g_cond_timed_wait (cond, mutex, NULL);
82 timed_wait_on_otherwise_locked_mutex (void)
84 GMutex* mutex = g_mutex_new ();
85 GCond* cond = g_cond_new ();
86 GThread* thread = g_thread_create (locking_thread, mutex, TRUE, NULL);
87 g_assert (thread != NULL);
88 g_usleep (G_USEC_PER_SEC);
89 g_cond_timed_wait (cond, mutex, NULL);
98 {"lock_locked_mutex", lock_locked_mutex},
99 {"trylock_locked_mutex", trylock_locked_mutex},
100 {"unlock_unlocked_mutex", unlock_unlocked_mutex},
101 {"free_locked_mutex", free_locked_mutex},
102 {"wait_on_unlocked_mutex", wait_on_unlocked_mutex},
103 {"wait_on_otherwise_locked_mutex", wait_on_otherwise_locked_mutex},
104 {"timed_wait_on_unlocked_mutex", timed_wait_on_unlocked_mutex},
105 {"timed_wait_on_otherwise_locked_mutex",
106 timed_wait_on_otherwise_locked_mutex}
110 main (int argc, char* argv[])
114 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
115 g_set_print_handler(mrtPrintHandler);
116 #endif /*__SYMBIAN32__*/
119 for (i = 0; i < G_N_ELEMENTS (func_table); i++)
121 if (strcmp (func_table[i].name, argv[1]) == 0)
123 g_thread_init (NULL);
124 func_table[i].func ();
125 g_assert_not_reached ();
130 fprintf (stderr, "Usage: errorcheck-mutex-test [TEST]\n\n");
131 fprintf (stderr, " where TEST can be one of:\n\n");
132 for (i = 0; i < G_N_ELEMENTS (func_table); i++)
134 fprintf (stderr, " %s\n", func_table[i].name);
137 testResultXml("errorcheck-mutex-test");
138 #endif /* EMULATOR */