Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
7 #include "mrt2_glib2_test.h"
8 #endif /*__SYMBIAN32__*/
10 #define DEBUG_MSG(args)
11 /* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n"); */
12 #define PRINT_MSG(args)
13 /* #define PRINT_MSG(args) g_print args ; g_print ("\n"); */
16 #define NUMBER_MIN 0000
17 #define NUMBER_MAX 9999
20 static guint32 array[SIZE];
24 sort (gconstpointer p1, gconstpointer p2)
28 a = GPOINTER_TO_INT (p1);
29 b = GPOINTER_TO_INT (p2);
31 return (a > b ? +1 : a == b ? 0 : -1);
43 PRINT_MSG (("testing g_list_sort()"));
45 for (i = 0; i < SIZE; i++) {
46 list = g_list_append (list, GINT_TO_POINTER (array[i]));
49 list = g_list_sort (list, sort);
50 for (i = 0; i < SIZE - 1; i++) {
53 p1 = g_list_nth_data (list, i);
54 p2 = g_list_nth_data (list, i+1);
56 g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
57 DEBUG_MSG (("list_sort #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
64 test_list_sort_with_data (void)
69 PRINT_MSG (("testing g_list_sort_with_data()"));
71 for (i = 0; i < SIZE; i++) {
72 list = g_list_append (list, GINT_TO_POINTER (array[i]));
75 list = g_list_sort_with_data (list, (GCompareDataFunc)sort, NULL);
76 for (i = 0; i < SIZE - 1; i++) {
79 p1 = g_list_nth_data (list, i);
80 p2 = g_list_nth_data (list, i+1);
82 g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
83 DEBUG_MSG (("list_sort_with_data #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
90 test_list_insert_sorted (void)
95 PRINT_MSG (("testing g_list_insert_sorted()"));
97 for (i = 0; i < SIZE; i++) {
98 list = g_list_insert_sorted (list, GINT_TO_POINTER (array[i]), sort);
101 for (i = 0; i < SIZE - 1; i++) {
104 p1 = g_list_nth_data (list, i);
105 p2 = g_list_nth_data (list, i+1);
107 g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
108 DEBUG_MSG (("list_insert_sorted #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
115 test_list_insert_sorted_with_data (void)
120 PRINT_MSG (("testing g_list_insert_sorted_with_data()"));
122 for (i = 0; i < SIZE; i++) {
123 list = g_list_insert_sorted_with_data (list,
124 GINT_TO_POINTER (array[i]),
125 (GCompareDataFunc)sort,
129 for (i = 0; i < SIZE - 1; i++) {
132 p1 = g_list_nth_data (list, i);
133 p2 = g_list_nth_data (list, i+1);
135 g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
136 DEBUG_MSG (("list_insert_sorted_with_data #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
143 test_list_reverse (void)
147 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
150 PRINT_MSG (("testing g_list_reverse()"));
152 for (i = 0; i < 10; i++) {
153 list = g_list_append (list, &nums[i]);
156 list = g_list_reverse (list);
158 for (i = 0; i < 10; i++) {
159 st = g_list_nth (list, i);
160 g_assert (*((gint*) st->data) == (9 - i));
171 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
174 PRINT_MSG (("testing g_list_nth()"));
176 for (i = 0; i < 10; i++) {
177 list = g_list_append (list, &nums[i]);
180 for (i = 0; i < 10; i++) {
181 st = g_list_nth (list, i);
182 g_assert (*((gint*) st->data) == i);
189 main (int argc, char *argv[])
193 DEBUG_MSG (("debugging messages turned on"));
195 DEBUG_MSG (("creating %d random numbers", SIZE));
197 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);
198 g_set_print_handler(mrtPrintHandler);
199 #endif /*__SYMBIAN32__*/
202 /* Create an array of random numbers. */
203 for (i = 0; i < SIZE; i++) {
204 array[i] = g_random_int_range (NUMBER_MIN, NUMBER_MAX);
205 DEBUG_MSG (("number #%3.3d ---> %d", i, array[i]));
210 test_list_sort_with_data ();
212 test_list_insert_sorted ();
213 test_list_insert_sorted_with_data ();
215 test_list_reverse ();
218 PRINT_MSG (("testing finished"));
220 testResultXml("list-test");
221 #endif /* EMULATOR */