1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
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 gboolean failed = FALSE;
37 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
40 g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
42 g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
45 g_print ("."); fflush (stdout); \
48 #define C2P(c) ((gpointer) ((long) (c)))
49 #define P2C(p) ((gchar) ((long) (p)))
51 #define GLIB_TEST_STRING "el dorado "
52 #define GLIB_TEST_STRING_5 "el do"
60 my_list_compare_one (gconstpointer a, gconstpointer b)
62 gint one = *((const gint*)a);
63 gint two = *((const gint*)b);
68 my_list_compare_two (gconstpointer a, gconstpointer b)
70 gint one = *((const gint*)a);
71 gint two = *((const gint*)b);
80 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
81 gint morenums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
85 for (i = 0; i < 10; i++)
86 slist = g_slist_append (slist, &nums[i]);
87 slist = g_slist_reverse (slist);
89 for (i = 0; i < 10; i++)
91 st = g_slist_nth (slist, i);
92 g_assert (*((gint*) st->data) == (9 - i));
98 for (i = 0; i < 10; i++)
99 slist = g_slist_insert_sorted (slist, &morenums[i], my_list_compare_one);
103 g_slist_foreach (slist, my_list_print, NULL);
106 for (i = 0; i < 10; i++)
108 st = g_slist_nth (slist, i);
109 g_assert (*((gint*) st->data) == i);
115 for (i = 0; i < 10; i++)
116 slist = g_slist_insert_sorted (slist, &morenums[i], my_list_compare_two);
120 g_slist_foreach (slist, my_list_print, NULL);
123 for (i = 0; i < 10; i++)
125 st = g_slist_nth (slist, i);
126 g_assert (*((gint*) st->data) == (9 - i));
132 for (i = 0; i < 10; i++)
133 slist = g_slist_prepend (slist, &morenums[i]);
135 slist = g_slist_sort (slist, my_list_compare_two);
139 g_slist_foreach (slist, my_list_print, NULL);
142 for (i = 0; i < 10; i++)
144 st = g_slist_nth (slist, i);
145 g_assert (*((gint*) st->data) == (9 - i));