Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #undef G_DISABLE_ASSERT
35 #include "mrt2_glib2_test.h"
40 gboolean failed = FALSE;
42 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
44 { assert_failed = TRUE;\
46 g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
48 g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
51 g_print ("."); fflush (stdout); \
54 #define C2P(c) ((gpointer) ((long) (c)))
55 #define P2C(p) ((gchar) ((long) (p)))
57 #define GLIB_TEST_STRING "el dorado "
58 #define GLIB_TEST_STRING_5 "el do"
66 my_list_compare_one (gconstpointer a, gconstpointer b)
68 gint one = *((const gint*)a);
69 gint two = *((const gint*)b);
74 my_list_compare_two (gconstpointer a, gconstpointer b)
76 gint one = *((const gint*)a);
77 gint two = *((const gint*)b);
86 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
87 gint morenums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
93 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);
94 g_set_print_handler(mrtPrintHandler);
98 for (i = 0; i < 10; i++)
99 list = g_list_append (list, &nums[i]);
100 list = g_list_reverse (list);
102 for (i = 0; i < 10; i++)
104 t = g_list_nth (list, i);
105 g_assert (*((gint*) t->data) == (9 - i));
108 for (i = 0; i < 10; i++)
109 g_assert (g_list_position(list, g_list_nth (list, i)) == i);
114 for (i = 0; i < 10; i++)
115 list = g_list_insert_sorted (list, &morenums[i], my_list_compare_one);
119 g_list_foreach (list, my_list_print, NULL);
122 for (i = 0; i < 10; i++)
124 t = g_list_nth (list, i);
125 g_assert (*((gint*) t->data) == i);
131 for (i = 0; i < 10; i++)
132 list = g_list_insert_sorted (list, &morenums[i], my_list_compare_two);
136 g_list_foreach (list, my_list_print, NULL);
139 for (i = 0; i < 10; i++)
141 t = g_list_nth (list, i);
142 g_assert (*((gint*) t->data) == (9 - i));
148 for (i = 0; i < 10; i++)
149 list = g_list_prepend (list, &morenums[i]);
151 list = g_list_sort (list, my_list_compare_two);
155 g_list_foreach (list, my_list_print, NULL);
158 for (i = 0; i < 10; i++)
160 t = g_list_nth (list, i);
161 g_assert (*((gint*) t->data) == (9 - i));
167 testResultXml("list-test");
168 #endif /* EMULATOR */