Make g_qsort_with_data stable, based on glibc msort
[platform/upstream/glib.git] / glib / tests / sort.c
1 /*
2  * Copyright (C) 2011 Red Hat, Inc.
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 #include <glib.h>
21
22 static int
23 int_compare_data (gconstpointer p1, gconstpointer p2, gpointer data)
24 {
25   const gint *i1 = p1;
26   const gint *i2 = p2;
27
28   return *i1 - *i2;
29 }
30
31 static void
32 test_sort_basic (void)
33 {
34   gint *data;
35   gint i;
36
37   data = g_malloc (10000 * sizeof (int));
38   for (i = 0; i < 10000; i++)
39     {
40       data[i] = g_random_int_range (0, 10000);
41     }
42
43   g_qsort_with_data (data, 10000, sizeof (int), int_compare_data, NULL);
44
45   for (i = 1; i < 10000; i++)
46     g_assert_cmpint (data[i -1], <=, data[i]);
47
48   g_free (data);
49 }
50
51 typedef struct {
52   int val;
53   int i;
54 } SortItem;
55
56 static int
57 item_compare_data (gconstpointer p1, gconstpointer p2, gpointer data)
58 {
59   const SortItem *i1 = p1;
60   const SortItem *i2 = p2;
61
62   return i1->val - i2->val;
63 }
64
65 static void
66 test_sort_stable (void)
67 {
68   SortItem *data;
69   gint i;
70
71   data = g_malloc (10000 * sizeof (SortItem));
72   for (i = 0; i < 10000; i++)
73     {
74       data[i].val = g_random_int_range (0, 10000);
75       data[i].i = i;
76     }
77
78   g_qsort_with_data (data, 10000, sizeof (SortItem), item_compare_data, NULL);
79
80   for (i = 1; i < 10000; i++)
81     {
82       g_assert_cmpint (data[i -1].val, <=, data[i].val);
83       if (data[i -1].val == data[i].val)
84         g_assert_cmpint (data[i -1].i, <, data[i].i);
85     }
86   g_free (data);
87 }
88
89 int
90 main (int argc, char *argv[])
91 {
92   g_test_init (&argc, &argv, NULL);
93
94   g_test_add_func ("/sort/basic", test_sort_basic);
95   g_test_add_func ("/sort/stable", test_sort_stable);
96
97   return g_test_run ();
98 }
99